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

7 lines
83 B
Go

package contracts
type MicroService interface {
Serve() error
GetEngine() any
}