Files
atom/providers/http/contracts.go
2023-04-20 14:05:22 +08:00

11 lines
119 B
Go

package http
type Route interface {
Register()
}
type Service interface {
Serve() error
GetEngine() interface{}
}