7 lines
83 B
Go
7 lines
83 B
Go
package contracts
|
|
|
|
type MicroService interface {
|
|
Serve() error
|
|
GetEngine() any
|
|
}
|