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

9 lines
114 B
Go

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