Skip to content

Commit

Permalink
chore: remove left over debug print
Browse files Browse the repository at this point in the history
  • Loading branch information
choffmann committed Feb 23, 2025
1 parent a5e4966 commit 7ec199d
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions internal/server/http/handler/v1/vehicle/handler.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package vehicle

import (
"fmt"
"strconv"
"strings"

Expand Down Expand Up @@ -216,7 +215,6 @@ func UpdateVehicle(svc service.VehicleService) fiber.Handler {
func GetArchiveVehicles(svc service.VehicleService) fiber.Handler {
return func(c *fiber.Ctx) error {
ctx := c.Context()
fmt.Println("Hier")
v, err := svc.GetAllArchived(ctx)
if err != nil {
return errorhandler.HandleError(err)
Expand Down

0 comments on commit 7ec199d

Please sign in to comment.