Rearrange folders, and separate functionality

This commit is contained in:
katefort 2025-03-31 18:15:51 -05:00
parent dc58253ad9
commit d26e7b8345
5 changed files with 76 additions and 59 deletions

View file

@ -0,0 +1,8 @@
package main
func main() {
router := gin.Default()
router.GET("/test", runTest)
router.Run("localhost:8080")
}