47 lines
1.2 KiB
Go
47 lines
1.2 KiB
Go
package main
|
|
|
|
import "sectorinf.com/emilis/flabk/flabk/flabweb"
|
|
|
|
// MUST (client and server) application/ld+json; profile="https://www.w3.org/ns/activitystreams
|
|
// SHOULD application/activity+json
|
|
|
|
// public actor https://www.w3.org/ns/activitystreams#Public
|
|
|
|
func main() {
|
|
panic(flabweb.New("my.site").Run())
|
|
}
|
|
|
|
// {
|
|
// "@context": ["https://www.w3.org/ns/activitystreams",
|
|
// {"@language": "en"}],
|
|
// "type": "Like",
|
|
// "actor": "https://dustycloud.org/chris/",
|
|
// "name": "Chris liked 'Minimal ActivityPub update client'",
|
|
// "object": "https://rhiaro.co.uk/2016/05/minimal-activitypub",
|
|
// "to": ["https://rhiaro.co.uk/#amy",
|
|
// "https://dustycloud.org/followers",
|
|
// "https://rhiaro.co.uk/followers/"],
|
|
// "cc": "https://e14n.com/evan"
|
|
// }
|
|
|
|
// {
|
|
// "@context": [
|
|
// "https://www.w3.org/ns/activitystreams",
|
|
// {
|
|
// "@language": "en"
|
|
// }
|
|
// ],
|
|
// "type": "Like",
|
|
// "to": [
|
|
// "https://rhiaro.co.uk/#amy",
|
|
// "https://dustycloud.org/followers",
|
|
// "https://rhiaro.co.uk/followers/"
|
|
// ],
|
|
// "cc": [
|
|
// "https://e14n.com/evan"
|
|
// ],
|
|
// "object": "https://rhiaro.co.uk/2016/05/minimal-activitypub",
|
|
// "actor": "https://dustycloud.org/chris/",
|
|
// "name": "Chris liked 'Minimal ActivityPub update client'"
|
|
// }
|