1
0
mirror of https://github.com/muety/wakapi.git synced 2023-08-10 21:12:56 +03:00

Db config DSN.

This commit is contained in:
Ferdinand Mütsch
2019-05-06 00:47:38 +02:00
parent 9df289b7ed
commit 5247255d67
2 changed files with 27 additions and 6 deletions

View File

@@ -1,5 +1,9 @@
package models
type Config struct {
Port int
Port int
DbHost string
DbUser string
DbPassword string
DbName string
}