mirror of https://github.com/Dreamacro/clash.git
18 lines
250 B
Go
18 lines
250 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
|
||
|
}
|