1
0
mirror of https://github.com/go-micro/go-micro.git synced 2024-11-30 08:06:40 +02:00
go-micro/proxy/proxy.go

19 lines
403 B
Go
Raw Normal View History

2019-06-06 10:50:25 +02:00
// Package proxy is a transparent proxy built on the go-micro/server
package proxy
2019-06-06 18:49:41 +02:00
import (
"context"
"github.com/micro/go-micro/init"
"github.com/micro/go-micro/server"
)
// Proxy can be used as a proxy server for go-micro services
type Proxy interface {
init.Options
// ServeRequest will serve a request
ServeRequest(context.Context, Request, Response) error
// run the proxy
Run() error
}