Files
atom/providers/http/contracts.go
2023-06-09 14:58:29 +08:00

9 lines
105 B
Go

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