mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2025-05-23 18:38:09 +08:00
18 lines
359 B
Go
18 lines
359 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
|
|
EchKey string
|
|
RealityConfig reality.Config
|
|
}
|