From f08c81460234d6331145e42e8c789198fac5f48e Mon Sep 17 00:00:00 2001 From: ginuerzh Date: Sun, 15 Oct 2023 15:35:40 +0800 Subject: [PATCH] update Ingress interface --- ingress/ingress.go | 1 + 1 file changed, 1 insertion(+) diff --git a/ingress/ingress.go b/ingress/ingress.go index 67bef6f..f2d81ff 100644 --- a/ingress/ingress.go +++ b/ingress/ingress.go @@ -4,4 +4,5 @@ import "context" type Ingress interface { Get(ctx context.Context, host string) string + Set(ctx context.Context, host, endpoint string) }