feat: initial commit
This commit is contained in:
commit
a161b86c9a
705 changed files with 288162 additions and 0 deletions
29
vendor/sourcery.dny.nu/pana/vocab/litepub/context.go
vendored
Normal file
29
vendor/sourcery.dny.nu/pana/vocab/litepub/context.go
vendored
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
// Package litepub contains terms for the Litepub namespace.
|
||||
package litepub
|
||||
|
||||
import (
|
||||
_ "embed"
|
||||
)
|
||||
|
||||
//go:embed context.jsonld
|
||||
var ContextDocument []byte
|
||||
|
||||
//go:embed litepub-0.1.jsonld
|
||||
var ContextDocument1dot0 []byte
|
||||
|
||||
// IRI is the remote context IRI.
|
||||
const IRI = "https://litepub.social/litepub/context.jsonld"
|
||||
|
||||
// Namespace is the IRI prefix used for terms defined in this namespace.
|
||||
const Namespace = "http://litepub.social/ns#"
|
||||
|
||||
const (
|
||||
Capabilities = Namespace + "capabilities"
|
||||
DirectMessage = Namespace + "directMessage"
|
||||
FormerRepresentations = Namespace + "formerRepresentations"
|
||||
Invisible = Namespace + "invisible"
|
||||
ListMessage = Namespace + "listMessage"
|
||||
OauthRegistrationEndpoint = Namespace + "oauthRegistrationEndpoint"
|
||||
TypeChatMessage = Namespace + "ChatMessage"
|
||||
TypeEmojiReact = Namespace + "EmojiReact"
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue