初始化提交
This commit is contained in:
18
WebDriverAgentLib/Vendor/RoutingHTTPServer/Route.h
vendored
Normal file
18
WebDriverAgentLib/Vendor/RoutingHTTPServer/Route.h
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
#import <Foundation/Foundation.h>
|
||||
#import "RoutingHTTPServer.h"
|
||||
|
||||
@interface Route : NSObject
|
||||
|
||||
@property (nonatomic) NSRegularExpression *regex;
|
||||
@property (nonatomic, copy) RequestHandler handler;
|
||||
|
||||
#if __has_feature(objc_arc_weak)
|
||||
@property (nonatomic, weak) id target;
|
||||
#else
|
||||
@property (nonatomic, assign) id target;
|
||||
#endif
|
||||
|
||||
@property (nonatomic, assign) SEL selector;
|
||||
@property (nonatomic) NSArray *keys;
|
||||
|
||||
@end
|
||||
Reference in New Issue
Block a user