iOS implement local server

This commit is contained in:
pengfei.zhou
2019-08-14 16:03:37 +08:00
parent a8e93648b0
commit 8c2c55e7b8
5 changed files with 144 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
//
// DoricLocalServer.h
// Doric
//
// Created by pengfei.zhou on 2019/8/14.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface DoricLocalServer : NSObject
- (void)startWithPort:(NSUInteger)port;
@end
NS_ASSUME_NONNULL_END