feat 添加读取数据库配置
This commit is contained in:
parent
27f10ca798
commit
a86156659d
@ -2,6 +2,7 @@ package database
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
"gorm.io/driver/postgres"
|
||||
"gorm.io/gorm"
|
||||
)
|
||||
|
@ -1,5 +1,11 @@
|
||||
package database
|
||||
|
||||
import (
|
||||
"os"
|
||||
|
||||
"gopkg.in/yaml.v3"
|
||||
)
|
||||
|
||||
type DBOption struct {
|
||||
Host string `yaml:"host"`
|
||||
User string `yaml:"user"`
|
||||
@ -7,3 +13,18 @@ type DBOption struct {
|
||||
Port string `yaml:"port"`
|
||||
DBName string `yaml:"dbname"`
|
||||
}
|
||||
|
||||
const (
|
||||
// 默认的数据库配置文件路径
|
||||
DefaultConfigPath = "/cfg/db.yaml"
|
||||
)
|
||||
|
||||
func LoadDBConfig(path string) (*DBOption, error) {
|
||||
f, err := os.Open(path)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
defer f.Close()
|
||||
var opt DBOption
|
||||
return &opt, yaml.NewDecoder(f).Decode(&opt)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user