mirror of
https://github.com/yv1ing/gin-admin.git
synced 2025-10-24 10:12:05 +08:00
15 lines
220 B
Go
15 lines
220 B
Go
package config
|
|
|
|
// @Author: yv1ing
|
|
// @Author: me@yvling.cn
|
|
// @Date: 2025/8/28 14:24
|
|
// @Desc: MySQL配置
|
|
|
|
type mysqlConfig struct {
|
|
Host string
|
|
Port uint
|
|
Username string
|
|
Password string
|
|
Database string
|
|
}
|