aboutsummaryrefslogtreecommitdiff
path: root/internal/context/environment.go
blob: 3e680cfb4df5c6a05aac2d6e21586c3734c346a1 (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
}