aboutsummaryrefslogtreecommitdiff
path: root/src/Model/IFeedManager.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Model/IFeedManager.cs')
-rw-r--r--src/Model/IFeedManager.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/Model/IFeedManager.cs b/src/Model/IFeedManager.cs
new file mode 100644
index 0000000..7f56449
--- /dev/null
+++ b/src/Model/IFeedManager.cs
@@ -0,0 +1,16 @@
+namespace VNLib.Tools.Build.Executor.Model
+{
+ public interface IFeedManager
+ {
+ /// <summary>
+ /// Adds taskfile variables for the feed manager
+ /// </summary>
+ /// <param name="vars">The taskfile variable container</param>
+ void AddVariables(TaskfileVars vars);
+
+ /// <summary>
+ /// The output directory of the feed
+ /// </summary>
+ string FeedOutputDir { get; }
+ }
+} \ No newline at end of file