initial commit

This commit is contained in:
zuoban
2024-04-17 14:14:19 +08:00
commit f2455f92b6
14 changed files with 555 additions and 0 deletions

13
main.go Normal file
View File

@@ -0,0 +1,13 @@
package main
import (
"tts/routes"
)
func main() {
router := routes.SetupRouter()
err := router.Run(":8080")
if err != nil {
panic(err)
}
}