harry hace 3 años
padre
commit
4d7529fa55
Se han modificado 1 ficheros con 20 adiciones y 0 borrados
  1. 20 0
      BFRouter/Classes/BFRouter.swift

+ 20 - 0
BFRouter/Classes/BFRouter.swift

@@ -0,0 +1,20 @@
+//
+//  BFRouter.swift
+//  BFRouter
+//
+//  Created by 胡志强 on 2021/11/1.
+//
+
+import Foundation
+
+public class BFRouter : NSObject {
+    static let shared  = BFRouter()
+    private override init() {
+        // 进行初始化工作
+        
+    }
+    
+    func registerModule(_ name:String){
+        
+    }
+}