16 lines
213 B
Go
16 lines
213 B
Go
|
package config
|
||
|
|
||
|
import (
|
||
|
"github.com/zeromicro/go-zero/core/stores/cache"
|
||
|
"github.com/zeromicro/go-zero/rest"
|
||
|
)
|
||
|
|
||
|
type Config struct {
|
||
|
rest.RestConf
|
||
|
|
||
|
DB struct {
|
||
|
DataSource string
|
||
|
}
|
||
|
Cache cache.CacheConf
|
||
|
}
|