diff options
author | Saumit Dinesan <justsaumit@protonmail.com> | 2023-11-29 16:14:53 +0530 |
---|---|---|
committer | Saumit Dinesan <justsaumit@protonmail.com> | 2023-11-29 16:14:53 +0530 |
commit | 3f8958d179936e412d59c86acbffab4561ba1cba (patch) | |
tree | cd728749e4ccb2aca33c505d261540d882d8ed4a /handlers/handlers.go | |
parent | e2afed3a8b63d4559812d1923a700513330972aa (diff) |
handlers - formatting using go fmt
Diffstat (limited to 'handlers/handlers.go')
-rw-r--r-- | handlers/handlers.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/handlers/handlers.go b/handlers/handlers.go index 1505f08..3fb8e26 100644 --- a/handlers/handlers.go +++ b/handlers/handlers.go @@ -78,7 +78,7 @@ func AddHash(c echo.Context) error { func VerifyHash(c echo.Context) error { // Extract the ID from the request - id := c.FormValue("idInput") + id := c.FormValue("idInput") // Handle file upload file, err := c.FormFile("FileInput") |