diff options
author | Julio Capote <jcapote@gmail.com> | 2022-12-17 21:35:26 +0000 |
---|---|---|
committer | Julio Capote <jcapote@gmail.com> | 2022-12-17 21:35:26 +0000 |
commit | 0e1e52b457a452e1cf4f852b88288cb324165f54 (patch) | |
tree | 2b7d1f006025f6160d4516b5b5da4a09f8e9ddfc /resources | |
parent | 5e51c63643fd4dcb17a23af08bb25cf47fad7650 (diff) | |
download | communique-0e1e52b457a452e1cf4f852b88288cb324165f54.tar.gz |
refactor webfinger package into resources
Diffstat (limited to 'resources')
-rw-r--r-- | resources/webfinger.go | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/resources/webfinger.go b/resources/webfinger.go new file mode 100644 index 0000000..d936519 --- /dev/null +++ b/resources/webfinger.go @@ -0,0 +1,13 @@ +package resources + +type Link struct { + Rel string `json:"rel"` + Type string `json:"type"` + Href string `json:"href"` +} + +type WebfingerResource struct { + Subject string `json:"subject"` + Aliases []string `json:"aliases"` + Links []Link `json:"links"` +} |