An atproto PDS written in Go
1package server 2 3import ( 4 "github.com/google/uuid" 5 "github.com/haileyok/cocoon/models" 6 "github.com/labstack/echo/v4" 7) 8 9func (s *Server) handleCreateInviteCode(e echo.Context) error { 10 ic := models.InviteCode{ 11 Code: uuid.NewString(), 12 } 13 14 return e.JSON(200, map[string]string{ 15 "code": ic.Code, 16 }) 17}