18 lines
254 B
Objective-C
18 lines
254 B
Objective-C
//
|
|
// UDPHandler.h
|
|
// nochange
|
|
//
|
|
// Created by mac on 2025/2/20.
|
|
//
|
|
|
|
#ifndef UDPHandler_h
|
|
#define UDPHandler_h
|
|
|
|
@interface UDPHandler : NSObject
|
|
+(instancetype)sharedInstance;
|
|
- (NSString *) handle: (NSString*) data;
|
|
|
|
@end
|
|
|
|
#endif /* UDPHandler_h */
|