12345678910111213141516171819202122232425262728293031323334353637 |
- package operation
- import (
- "context"
- "go-common/app/interface/main/web-show/conf"
- xsql "go-common/library/database/sql"
- "go-common/library/log"
- "go-common/library/stat/prom"
- )
- // Dao struct
- type Dao struct {
- db *xsql.DB
- }
- // PromError err
- func PromError(name string, format string, args ...interface{}) {
- prom.BusinessErrCount.Incr(name)
- log.Error(format, args...)
- }
- // New Conf
- func New(c *conf.Config) (dao *Dao) {
- dao = &Dao{db: xsql.NewMySQL(c.MySQL.Operation)}
- return
- }
- // Close Dao
- func (dao *Dao) Close() {
- dao.db.Close()
- }
- // Ping Dao
- func (dao *Dao) Ping(c context.Context) error {
- return dao.db.Ping(c)
- }
|