this repo has no description
0
fork

Configure Feed

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

add ASCII home page

+18 -1
+17 -1
cmd/domesday/handlers.go
··· 240 240 } 241 241 242 242 func (srv *Server) WebHome(c echo.Context) error { 243 - return c.JSON(200, GenericStatus{Status: "ok", Daemon: "domesday"}) 243 + return c.String(200, ` 244 + ######## ####### ## ## ######## ###### ######## ### ## ## 245 + ## ## ## ## ### ### ## ## ## ## ## ## ## ## ## 246 + ## ## ## ## #### #### ## ## ## ## ## ## #### 247 + ## ## ## ## ## ### ## ###### ###### ## ## ## ## ## 248 + ## ## ## ## ## ## ## ## ## ## ######### ## 249 + ## ## ## ## ## ## ## ## ## ## ## ## ## ## 250 + ######## ####### ## ## ######## ###### ######## ## ## ## 251 + 252 + This is an AT Protocol Identity Service 253 + 254 + Most API routes are under /xrpc/ 255 + 256 + Code: https://github.com/bluesky-social/indigo/tree/main/cmd/domesday 257 + Protocol: https://atproto.com 258 + `) 259 + 244 260 }
+1
cmd/domesday/server.go
··· 133 133 // XSSProtection 134 134 })) 135 135 136 + e.GET("/", srv.WebHome) 136 137 e.GET("/_health", srv.HandleHealthCheck) 137 138 e.GET("/xrpc/com.atproto.identity.resolveHandle", srv.ResolveHandle) 138 139 e.GET("/xrpc/com.atproto.identity.resolveDid", srv.ResolveDid)