Copy-paste to fix previous copy-paste

This commit is contained in:
2023-08-07 18:49:25 -04:00
parent 5dd3fa9451
commit ca56ca7b29
4 changed files with 52 additions and 0 deletions

View File

@@ -39,6 +39,7 @@ func main() {
e.GET("/gun/:id", Guns.GetById)
e.POST("/gun", Guns.Post)
e.GET("/gun/photo/:id/:filename", Guns.GetPhoto)
e.GET("/gun/photo/:id/:size/:filename", Guns.GetPhotoResize)
e.Logger.Fatal(e.Start(":8000"))
}