diff options
author | Alexander Neonxp Kiryukhin <i@neonxp.ru> | 2024-12-09 01:07:15 +0300 |
---|---|---|
committer | Alexander Neonxp Kiryukhin <i@neonxp.ru> | 2024-12-09 01:07:15 +0300 |
commit | 34ccc98a942098faefb5f4211b215ff9ccc7ad0e (patch) | |
tree | 7696ab4d7c8d9fb09c7e2575d482517f68824ae3 /pkg/api/handler.go |
Начальный
Diffstat (limited to 'pkg/api/handler.go')
-rw-r--r-- | pkg/api/handler.go | 11 |
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} +} |