mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2025-05-12 21:18:03 +08:00
17 lines
337 B
Go
17 lines
337 B
Go
|
package config
|
||
|
|
||
|
import (
|
||
|
"github.com/metacubex/mihomo/component/auth"
|
||
|
"github.com/metacubex/mihomo/listener/reality"
|
||
|
)
|
||
|
|
||
|
// AuthServer for http/socks/mixed server
|
||
|
type AuthServer struct {
|
||
|
Enable bool
|
||
|
Listen string
|
||
|
AuthStore auth.AuthStore
|
||
|
Certificate string
|
||
|
PrivateKey string
|
||
|
RealityConfig reality.Config
|
||
|
}
|