[feat] add Service.Load func

This commit is contained in:
2023-04-24 16:14:51 +08:00
parent e42577fdf8
commit a7142bf6da

View File

@@ -1,6 +1,7 @@
package contracts
type Service interface {
Load(file string) error
GetResListener(code string) (ResListener, bool)
GetAppController(code string) (Controller, bool)
}