Files
2020-06-09 19:07:05 +00:00

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{}
})
}