url/internal/config/config.go

15 lines
249 B
Go
Raw Normal View History

2024-12-26 16:08:14 +00:00
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
}