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

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

type Environment struct {
	Webmaster string
	AppPort   uint64
	Serv      string

	Db DbCredentials
}