add ingress interface

This commit is contained in:
ginuerzh
2023-01-14 13:09:24 +08:00
parent 36ed0eae2d
commit 1a8c1ccb1d
2 changed files with 12 additions and 0 deletions

5
ingress/ingress.go Normal file
View File

@ -0,0 +1,5 @@
package ingress
type Ingress interface {
Get(host string) string
}