diff options
author | Julio Capote <jcapote@gmail.com> | 2022-12-17 21:44:01 +0000 |
---|---|---|
committer | Julio Capote <jcapote@gmail.com> | 2022-12-17 21:44:01 +0000 |
commit | ac88356c215309c10b7eeecd2b2c9ef3b5e970ec (patch) | |
tree | bc35756d2675820ad4630b072e6a149b91c5065a /resources | |
parent | 0e1e52b457a452e1cf4f852b88288cb324165f54 (diff) | |
download | communique-ac88356c215309c10b7eeecd2b2c9ef3b5e970ec.tar.gz |
profile endpoint wip
Diffstat (limited to 'resources')
-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 +} |