15 lines
249 B
Go
15 lines
249 B
Go
|
package config
|
||
|
|
||
|
import (
|
||
|
mgo "code.30cm.net/digimon/library-go/mongo"
|
||
|
"github.com/zeromicro/go-zero/core/stores/cache"
|
||
|
"github.com/zeromicro/go-zero/rest"
|
||
|
)
|
||
|
|
||
|
type Config struct {
|
||
|
rest.RestConf
|
||
|
// 快取
|
||
|
Cache cache.CacheConf
|
||
|
Mongo mgo.Conf
|
||
|
}
|