13 lines
194 B
Plaintext
13 lines
194 B
Plaintext
|
package config
|
||
|
|
||
|
var Config = HMNConfig{
|
||
|
Env: Dev,
|
||
|
Postgres: PostgresConfig{
|
||
|
User: "hmn",
|
||
|
Password: "password",
|
||
|
Hostname: "handmade.local",
|
||
|
Port: 5454,
|
||
|
DbName: "hmn",
|
||
|
},
|
||
|
}
|