package main import ( "file/config" "file/db" "file/gin" ) func main() { config.ReadConfig() db.Open() gin.RunGin() }