core/ingress/ingress.go
2023-10-15 15:35:40 +08:00

9 lines
157 B
Go

package ingress
import "context"
type Ingress interface {
Get(ctx context.Context, host string) string
Set(ctx context.Context, host, endpoint string)
}