micro/service/service.go

17 lines
351 B
Go
Raw Normal View History

2019-06-06 09:02:00 +01:00
// Package service encapsulates the client, server and other interfaces to provide a complete micro service.
package service
2019-08-06 17:53:14 +01:00
import (
"github.com/micro/go-micro/client"
"github.com/micro/go-micro/server"
)
type Service interface {
Init(...Option)
Options() Options
Client() client.Client
Server() server.Server
Run() error
String() string
}