aboutsummaryrefslogtreecommitdiff
path: root/resources/profile.go
blob: 207f4debb8b1467c9c2737632cea94858366b479 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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
}