mirror of
https://github.com/zeromicro/go-zero.git
synced 2026-05-08 07:30:01 +08:00
23 lines
375 B
Go
23 lines
375 B
Go
package config
|
|
|
|
import (
|
|
"github.com/tal-tech/go-zero/core/logx"
|
|
"github.com/tal-tech/go-zero/core/stores/cache"
|
|
"github.com/tal-tech/go-zero/core/stores/redis"
|
|
)
|
|
|
|
type (
|
|
Config struct {
|
|
logx.LogConf
|
|
Mysql struct {
|
|
DataSource string
|
|
Table struct {
|
|
User string
|
|
Course string
|
|
}
|
|
}
|
|
CacheRedis cache.CacheConf
|
|
Redis redis.RedisConf
|
|
}
|
|
)
|