contracts/service.go

7 lines
145 B
Go
Raw Normal View History

2023-04-12 16:56:55 +08:00
package contracts
type Service interface {
2023-04-24 15:09:08 +08:00
GetResListener(code string) (ResListener, bool)
2023-04-24 15:21:13 +08:00
GetAppController(code string) (Controller, bool)
2023-04-24 15:02:51 +08:00
}