diff options
Diffstat (limited to '')
-rw-r--r-- | resources/profile.go | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/resources/profile.go b/resources/profile.go new file mode 100644 index 0000000..207f4de --- /dev/null +++ b/resources/profile.go @@ -0,0 +1,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 +} |