diff --git a/backend/main.go b/backend/main.go
index 8c9414b..c6656ea 100644
--- a/backend/main.go
+++ b/backend/main.go
@@ -17,11 +17,6 @@ func handler(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "
Hello, World!
")
}
-type ErrorResponse struct {
- ErrorCode string `json:"errorCode"`
- Message string `json:"message"`
-}
-
func main() {
err := godotenv.Load()
if err != nil {
diff --git a/backend/router.go b/backend/router.go
index ae1e599..3b73316 100644
--- a/backend/router.go
+++ b/backend/router.go
@@ -2,9 +2,7 @@ package main
import (
"net/http"
- api "fr.latosa-escrima/api"
"encoding/json"
- core "fr.latosa-escrima/api/core"
)
type JSONStatus string