move common code to pkg

This commit is contained in:
2025-10-29 17:29:30 +01:00
parent 05ca5ac787
commit 4885dad4ab
6 changed files with 13 additions and 7 deletions
+2 -2
View File
@@ -8,13 +8,13 @@ import (
"io"
"log/slog"
"net/http"
"pkg"
"servicea/internal/app"
"servicea/internal/domains"
"time"
)
type Handler struct {
domains.BaseHandler
pkg.BaseHandler
s *Service
}