mirror of
https://github.com/p4gefau1t/trojan-go.git
synced 2024-04-21 12:21:34 +00:00
16 lines
243 B
Go
16 lines
243 B
Go
package memory
|
|
|
|
import (
|
|
"github.com/p4gefau1t/trojan-go/config"
|
|
)
|
|
|
|
type Config struct {
|
|
Passwords []string `json:"password" yaml:"password"`
|
|
}
|
|
|
|
func init() {
|
|
config.RegisterConfigCreator(Name, func() interface{} {
|
|
return &Config{}
|
|
})
|
|
}
|