Skip to content
Snippets Groups Projects
Commit 6e70213a authored by nicolas.albanesi's avatar nicolas.albanesi
Browse files

Added a debug print

parent 08b2158b
No related branches found
No related tags found
No related merge requests found
...@@ -38,7 +38,8 @@ func main() { ...@@ -38,7 +38,8 @@ func main() {
e.HideBanner = true e.HideBanner = true
e.Use(middleware.BodyLimit("1M")) e.Use(middleware.BodyLimit("1M"))
os.Mkdir(SERVER_PATH, os.ModePerm) a := os.Mkdir(SERVER_PATH, os.ModePerm)
fmt.Println(a)
os.Mkdir(SERVER_PATH + "images", os.ModePerm) os.Mkdir(SERVER_PATH + "images", os.ModePerm)
e.GET("/list", listFiles) e.GET("/list", listFiles)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment