I don't know why. Just move on.

This commit is contained in:
2023-08-07 22:01:06 -04:00
parent 4c9380c548
commit fdc22b8896
2 changed files with 53 additions and 0 deletions

View File

@@ -36,6 +36,7 @@ func main() {
}))
e.GET("/gun", Guns.Get)
e.PUT("/gun/:id", Guns.UpdateGun)
e.GET("/gun/:id", Guns.GetById)
e.DELETE("/gun/:id", Guns.DeleteById)
e.POST("/gun", Guns.Post)