13 lines
231 B
Go
13 lines
231 B
Go
|
|
package impl
|
||
|
|
|
||
|
|
import (
|
||
|
|
"git.apinb.com/bsm-sdk/core/vars"
|
||
|
|
)
|
||
|
|
|
||
|
|
func NewImpl() {
|
||
|
|
// with activating
|
||
|
|
withRedisCache(vars.ServiceKey) // redis cache
|
||
|
|
withDatabases() // model
|
||
|
|
withEtcd() // etcd
|
||
|
|
}
|