12345678910111213141516171819202122232425262728293031 |
- package user_ext
- import (
- "context"
- "go-common/app/interface/live/app-interface/conf"
- )
- // Dao dao
- type Dao struct {
- c *conf.Config
- }
- // New init mysql db
- func New(c *conf.Config) (dao *Dao) {
- dao = &Dao{
- c: c,
- }
- return
- }
- // Close close the resource.
- func (d *Dao) Close() {
- return
- }
- // Ping dao ping
- func (d *Dao) Ping(c context.Context) error {
- // check
- return nil
- }
|