initial CLI exploration

This commit is contained in:
2021-07-02 20:46:58 -04:00
parent ca618cc609
commit b648c1c0ae
5 changed files with 126 additions and 9 deletions

9
config/config.go Normal file
View File

@@ -0,0 +1,9 @@
package config
type Config struct {
DBUser string
DBPass string
DBHost string
DBPort string
DBName string
}