| 123456789101112131415161718192021 |
- package config
- import (
- "github.com/zeromicro/go-zero/rest"
- )
- type Config struct {
- rest.RestConf
- QiNiuConf struct {
- AccessKey string
- SecretKey string
- Bucket string
- HostUrl string
- }
- BaiduAsrConf struct {
- AppID string
- APIKey string
- SecretKey string
- }
- }
|