An atproto PDS written in Go
103
fork

Configure Feed

Select the types of activity you want to include in your feed.

at eff7934db6df19c95a7e526dd91ae94a11101b25 9 lines 196 B view raw
1package server 2 3import "github.com/labstack/echo/v4" 4 5func (s *Server) handleHealth(e echo.Context) error { 6 return e.JSON(200, map[string]string{ 7 "version": "cocoon " + s.config.Version, 8 }) 9}