1
0
mirror of https://github.com/evilsocket/shieldwall.git synced 2021-09-07 00:28:37 +03:00
Files
Simone Margaritelli 72774daf3c first commit
2021-02-09 02:44:28 +01:00

9 lines
199 B
Go

package database
type Config struct {
Hostname string `yaml:"host"`
Port int `yaml:"port"`
User string `yaml:"user"`
Password string `yaml:"password"`
Name string `yaml:"name"`
}