aboutsummaryrefslogtreecommitdiff
path: root/internal/context/environment.go
blob: 35cb9d81be790cdc362385155c6ac7a932aa840f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package context

type DbCredentials struct {
	Name string
	Host string
	Port uint64
	Username string
	Password string
}

type Environment struct {
	Webmaster string
	AppPort   uint64

	Db DbCredentials
}