17 lines
252 B
C
17 lines
252 B
C
|
//
|
||
|
// 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
|