mirror of
https://github.com/pomerium/pomerium.git
synced 2025-04-29 18:36:30 +02:00
14 lines
266 B
Go
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
|
|
}
|