summaryrefslogtreecommitdiff
path: root/pkg/api/handler.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/api/handler.go')
-rw-r--r--pkg/api/handler.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/pkg/api/handler.go b/pkg/api/handler.go
new file mode 100644
index 0000000..de1e8c3
--- /dev/null
+++ b/pkg/api/handler.go
@@ -0,0 +1,11 @@
+package api
+
+import "git.neonxp.ru/neonxp/guessr/pkg/service"
+
+type Handler struct {
+ places *service.Places
+}
+
+func New(places *service.Places) *Handler {
+ return &Handler{places: places}
+}