aboutsummaryrefslogtreecommitdiff
path: root/internal/context/environment.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/context/environment.go')
-rw-r--r--internal/context/environment.go13
1 files changed, 13 insertions, 0 deletions
diff --git a/internal/context/environment.go b/internal/context/environment.go
new file mode 100644
index 0000000..8329ac2
--- /dev/null
+++ b/internal/context/environment.go
@@ -0,0 +1,13 @@
+package context
+
+type DbCredentials struct {
+ Username string
+ Password string
+}
+
+type Environment struct {
+ Webmaster string
+ AppPort uint64
+
+ Db DbCredentials
+}