diff --git a/internal/api/api.go b/internal/api/api.go index 59ad2b0..52ace65 100644 --- a/internal/api/api.go +++ b/internal/api/api.go @@ -53,7 +53,7 @@ func New(services Services) *fiber.App { app.Get("/healthz", func(ctx *fiber.Ctx) error { return ctx.SendString("OK") }) - app.Get("/diyanet/prayertimes", func(ctx *fiber.Ctx) error { + app.Get("/api/v1/diyanet/prayertimes", func(ctx *fiber.Ctx) error { locationID := ctx.Query("location_id") times, err := services.PrayerTimesProvider.Get(ctx.Context(), locationID)