package config import "github.com/zeromicro/go-zero/rest" type Config struct { rest.RestConf Database DatabaseConfig } type DatabaseConfig struct { DSN string // Data Source Name for database connection }