@class CoreServer;
/**
 * Server is an instance of V2Ray. At any time, there must be at most one Server instance running.
 */
@interface CoreServer : NSObject <goSeqRefInterface, CoreServer> {
}
@property(strong, readonly) _Nonnull id _ref;
- (nonnull instancetype)initWithRef:(_Nonnull id)ref;
- (BOOL)close:(NSError* _Nullable* _Nullable)error;
- (BOOL)start:(NSError* _Nullable* _Nullable)error
@end