package resources type Profile struct { Context []string `json:"@context"` } func RenderProfile() *Profile { p := Profile{ Context: []string{"https://www.w3.org/ns/activitystreams", "https://w3id.org/security/v1"}, } return &p }