Files
atom/contracts/http.go
2023-07-31 18:46:20 +08:00

9 lines
118 B
Go

package contracts
type HttpRoute interface{}
type HttpService interface {
Serve() error
GetEngine() interface{}
}