Codebase list golang-github-go-kit-kit / 320bc0f examples / addsvc / server / service.go
320bc0f

Tree @320bc0f (Download .tar.gz)

service.go @320bc0fraw · history · blame

1
2
3
4
5
6
7
package server

// AddService is the abstract representation of this service.
type AddService interface {
	Sum(a, b int) int
	Concat(a, b string) string
}