【更新】更新pg代码生成

This commit is contained in:
PandaGoAdmin
2022-08-19 17:58:02 +08:00
parent f0e235d22f
commit cf97d854d8
11 changed files with 231 additions and 2 deletions

30
pkg/config/log.go Normal file
View File

@@ -0,0 +1,30 @@
package config
import "path"
type Log struct {
Level string `yaml:"level"`
File *LogFile `yaml:"file"`
}
type LogFile struct {
Name string `yaml:"name"`
Path string `yaml:"path"`
}
// 获取完整路径文件名
func (l *LogFile) GetFilename() string {
var filepath, filename string
if fp := l.Path; fp == "" {
filepath = "./"
} else {
filepath = fp
}
if fn := l.Name; fn == "" {
filename = "default.log"
} else {
filename = fn
}
return path.Join(filepath, filename)
}