1
0
mirror of https://github.com/MetaCubeX/mihomo.git synced 2025-09-19 20:15:59 +08:00
Files
mihomo/listener/auth/auth.go
2021-10-10 23:44:09 +08:00

16 lines
245 B
Go

package auth
import (
"github.com/Dreamacro/clash/component/auth"
)
var authenticator auth.Authenticator
func Authenticator() auth.Authenticator {
return authenticator
}
func SetAuthenticator(au auth.Authenticator) {
authenticator = au
}