feat:add DoricNavigatorProtocol

This commit is contained in:
pengfei.zhou
2019-11-23 17:14:50 +08:00
parent 51042eeba4
commit 27d601c326
5 changed files with 18 additions and 7 deletions

View File

@@ -0,0 +1,11 @@
//
// Created by pengfei.zhou on 2019/11/23.
//
#import <Foundation/Foundation.h>
@protocol DoricNavigatorProtocol <NSObject>
- (void)push:(NSString *)scheme alias:(NSString *)alias;
- (void)pop;
@end