You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
364 B
26 lines
364 B
package bfs |
|
|
|
import ( |
|
"go-common/app/interface/main/mcn/conf" |
|
) |
|
|
|
// Dao dao |
|
type Dao struct { |
|
c *conf.Config |
|
bucket string |
|
key string |
|
secret string |
|
bfs string |
|
} |
|
|
|
// New init mysql db |
|
func New(c *conf.Config) (d *Dao) { |
|
d = &Dao{ |
|
c: c, |
|
bucket: c.BFS.Bucket, |
|
key: c.BFS.Key, |
|
secret: c.BFS.Secret, |
|
bfs: c.Host.Bfs, |
|
} |
|
return |
|
}
|
|
|