A community based topic aggregation platform built on atproto
1package routes
2
3import (
4 "Coves/internal/core/users"
5 "github.com/go-chi/chi/v5"
6 "net/http"
7)
8
9// UserRoutes returns user-related routes
10func UserRoutes(service users.UserService) chi.Router {
11 r := chi.NewRouter()
12
13 // TODO: Implement user handlers
14 r.Get("/", func(w http.ResponseWriter, r *http.Request) {
15 w.WriteHeader(http.StatusOK)
16 w.Write([]byte("User routes not yet implemented"))
17 })
18
19 return r
20}