chore: update skipper name (#1080)

This commit is contained in:
boojack
2023-02-12 17:29:23 +08:00
committed by GitHub
parent a997e1d10d
commit 870559046f
5 changed files with 11 additions and 10 deletions

View File

@@ -15,11 +15,11 @@ type Profile struct {
// Mode can be "prod" or "dev"
Mode string `json:"mode"`
// Port is the binding port for server
Port int `json:"port"`
Port int `json:"-"`
// Data is the data directory
Data string `json:"data"`
Data string `json:"-"`
// DSN points to where Memos stores its own data
DSN string `json:"dsn"`
DSN string `json:"-"`
// Version is the current version of server
Version string `json:"version"`
}