update Ingress interface

This commit is contained in:
ginuerzh
2023-10-15 15:35:40 +08:00
parent 4525630abb
commit f08c814602

View File

@ -4,4 +4,5 @@ import "context"
type Ingress interface { type Ingress interface {
Get(ctx context.Context, host string) string Get(ctx context.Context, host string) string
Set(ctx context.Context, host, endpoint string)
} }