feat: initial commit

This commit is contained in:
l.weber 2025-12-05 12:20:05 +01:00
commit a161b86c9a
705 changed files with 288162 additions and 0 deletions

View file

@ -0,0 +1,25 @@
package longdistance
const (
// BlankNode is the blank node prefix.
BlankNode = "_:"
)
// Values for @direction.
const (
DirectionLTR = "ltr"
DirectionRTL = "rtl"
)
// JSON-LD MIME types and profiles.
const (
ApplicationLDJSON = "application/ld+json"
ApplicationJSON = "application/json"
ProfileExpanded = "http://www.w3.org/ns/json-ld#expanded"
ProfileCompacted = "http://www.w3.org/ns/json-ld#compacted"
ProfileContext = "http://www.w3.org/ns/json-ld#context"
ProfileFlattened = "http://www.w3.org/ns/json-ld#flattened"
ProfileFrame = "http://www.w3.org/ns/json-ld#frame"
ProfileFramed = "http://www.w3.org/ns/json-ld#framed"
)