mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2024-11-03 02:23:59 +00:00
15 lines
245 B
Go
15 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
|
|
}
|