mirror of
https://github.com/go-gost/core.git
synced 2024-08-11 17:44:43 +00:00
8 lines
108 B
Go
8 lines
108 B
Go
package ingress
|
|
|
|
import "context"
|
|
|
|
type Ingress interface {
|
|
Get(ctx context.Context, host string) string
|
|
}
|