aboutsummaryrefslogtreecommitdiffstats
path: root/Drop Serve/Server.h
diff options
context:
space:
mode:
Diffstat (limited to 'Drop Serve/Server.h')
-rw-r--r--Drop Serve/Server.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/Drop Serve/Server.h b/Drop Serve/Server.h
new file mode 100644
index 0000000..a19908f
--- /dev/null
+++ b/Drop Serve/Server.h
@@ -0,0 +1,18 @@
+//
+// Server.h
+// Drop Serve
+//
+// Created by TW on 10/10/20.
+// Copyright (c) 2020 TW. All rights reserved.
+//
+
+#import <Foundation/Foundation.h>
+
+NSTask *_process;
+
+@interface Server : NSObject
+
++ (void)serveAtPath:(NSString *)path;
++ (void)stop;
+
+@end