Files
atom/providers/http/contracts.go
2023-04-20 12:11:34 +08:00

10 lines
94 B
Go

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