1
0
Fork 0
mirror of https://github.com/pomerium/pomerium.git synced 2025-08-18 11:48:31 +02:00
pomerium/internal/registry/registry.go
2021-05-10 10:33:37 -06:00

14 lines
266 B
Go

// Package registry implements a service registry server.
package registry
import (
"io"
registrypb "github.com/pomerium/pomerium/pkg/grpc/registry"
)
// Interface is a registry implementation.
type Interface interface {
registrypb.RegistryServer
io.Closer
}