update readme

This commit is contained in:
Ruidy 2024-02-21 22:38:08 +01:00
parent 43ab1f59d2
commit 804d08caba
No known key found for this signature in database
GPG key ID: E00F51288CB857CC
2 changed files with 1 additions and 1 deletions

View file

@ -11,6 +11,7 @@ Manage your holiday rental
- [ ] Refactor the env variable calls to a Config struct with proper defaults
- [x] Refactor handlers to call their dependencies instead of taking them from the Server struct
- [ ] Embed mandatory assets, css in the executable
- [ ] Calendar to store new booking in calendar
## Built With

View file

@ -11,7 +11,6 @@ import (
func handleCreateInvoicePdf(bs *booking.Service, ps *pdf.PdfService) echo.HandlerFunc {
return func(c echo.Context) error {
idStr := c.Param("id")
c.Logger().Info(idStr)
id, err := strconv.Atoi(idStr)
if err != nil {
return err