Files
contracts/service.go
2023-04-24 16:14:51 +08:00

8 lines
170 B
Go

package contracts
type Service interface {
Load(file string) error
GetResListener(code string) (ResListener, bool)
GetAppController(code string) (Controller, bool)
}