aboutsummaryrefslogtreecommitdiff
path: root/src/Model/IUploadManager.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Model/IUploadManager.cs')
-rw-r--r--src/Model/IUploadManager.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/Model/IUploadManager.cs b/src/Model/IUploadManager.cs
new file mode 100644
index 0000000..01d7081
--- /dev/null
+++ b/src/Model/IUploadManager.cs
@@ -0,0 +1,15 @@
+using System.Threading.Tasks;
+
+namespace VNLib.Tools.Build.Executor.Model
+{
+ public interface IUploadManager
+ {
+ Task CleanAllAsync(string path);
+
+ Task DeleteFileAsync(string filePath);
+
+ Task UploadDirectoryAsync(string path);
+
+ Task UploadFileAsync(string filePath);
+ }
+} \ No newline at end of file