contracts/service.go

8 lines
170 B
Go

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