Documentation
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func WithEndpoint ¶
func WithEndpoint(e *Endpoint) server.HandlerOption
WithEndpoint returns a server.HandlerOption with endpoint metadata set
Usage:
proto.RegisterHandler(service.Server(), new(Handler), api.WithEndpoint( &api.Endpoint{ Name: "Greeter.Hello", Path: []string{"/greeter"}, }, ))
Types ¶
type Endpoint ¶
type Endpoint struct { // RPC Method e.g. Greeter.Hello Name string // Description e.g what's this endpoint for Description string // API Handler e.g rpc, proxy Handler string // HTTP Host e.g example.com Host []string // HTTP Methods e.g GET, POST Method []string // HTTP Path e.g /greeter. Expect POSIX regex Path []string // Body destination // "*" or "" - top level message value // "string" - inner message value Body string // Stream flag Stream bool }
Endpoint is a mapping between an RPC method and HTTP endpoint
Directories
Path | Synopsis |
---|---|
handler | Package handler provides http handlers |
handler/api | Package api provides an http-rpc handler which provides the entire http request over rpc |
handler/event | Package event provides a handler which publishes an event |
handler/http | Package http is a http reverse proxy handler |
handler/rpc | Package rpc is a go-micro rpc handler. |
handler/web | Package web contains the web handler including websocket support |
internal/proto | |
proto | |
resolver | Package resolver resolves a http request to an endpoint |
resolver/grpc | Package grpc resolves a grpc service like /greeter.Say/Hello to greeter service |
resolver/host | Package host resolves using http host |
resolver/path | Package path resolves using http path |
resolver/vpath | Package vpath resolves using http path and recognised versioned urls |
router | Package router provides api service routing |
router/registry | Package registry provides a dynamic api service router |
router/static | |
router/util | |
server | Package server provides an API gateway server which handles inbound requests |
server/acme | Package acme abstracts away various ACME libraries |
server/acme/autocert | Package autocert is the ACME provider from golang.org/x/crypto/acme/autocert This provider does not take any config. |
server/acme/certmagic | Package certmagic is the ACME provider from github.com/caddyserver/certmagic |
server/cors | |
server/http | Package http provides a http server with features; acme, cors, etc |
service/proto |