11 lines
320 B
Go
11 lines
320 B
Go
|
|
// Package ldp contains terms for the Linked Data Platform namespace.
|
||
|
|
package ldp
|
||
|
|
|
||
|
|
// Namespace is the IRI prefix used for terms defined in this namespace.
|
||
|
|
const Namespace = "https://www.w3.org/ns/ldp#"
|
||
|
|
|
||
|
|
const (
|
||
|
|
// Inbox is an IRI, either as a string or as an object with an id property.
|
||
|
|
Inbox = Namespace + "inbox"
|
||
|
|
)
|