Sparqlpuppy wants to be a SOLID server when it grows up
// sparqlpuppy - an LDP/SOLID Server
// Copyright (C) 2019 Azure <azure@fox.blue>
//
// This program is free software: you can redistribute it and/or
// modify it under the terms of the GNU Affero General Public License
// as published by the Free Software Foundation, either version 3 of
// the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
// Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public
// License along with this program.  If not, see
// <https://www.gnu.org/licenses/>.

mod rdf {
    pub static TYPE: &str = "http://www.w3.org/1999/02/22-rdf-syntax-ns#type";
}

mod ldp {
    pub static CONTAINER: &str = "http://www.w3.org/ns/ldp#Container";
    pub static RESOURCE: &str = "http://www.w3.org/ns/ldp#Resource";
    pub static BASIC_CONTAINER: &str = "http://www.w3.org/ns/ldp#BasicContainer";
    pub static CONTAINS: &str = "http://www.w3.org/ns/ldp#contains";
}

mod stat {
    pub static FILE: &str = "http://www.w3.org/ns/posix/stat#File";
    pub static DIR: &str = "http://www.w3.org/ns/posix/stat#Directory";
    pub static MTIME: &str = "http://www.w3.org/ns/posix/stat#mtime";
    pub static SIZE: &str = "http://www.w3.org/ns/posix/stat#size";
}