11 lines
130 B
Go
11 lines
130 B
Go
package config
|
|
|
|
import "github.com/zeromicro/go-zero/rest"
|
|
|
|
type Config struct {
|
|
rest.RestConf
|
|
Mysql struct {
|
|
Dsn string
|
|
}
|
|
}
|