safing-portmaster/profile/database.go
2019-07-02 15:12:31 +02:00

22 lines
423 B
Go

package profile
import (
"github.com/safing/portbase/database"
)
// core:profiles/user/12345-1234-125-1234-1235
// core:profiles/special/default
// /global
// core:profiles/stamp/12334-1235-1234-5123-1234
// core:profiles/identifier/base64
// Namespaces
const (
UserNamespace = "user"
StampNamespace = "stamp"
SpecialNamespace = "special"
)
var (
profileDB = database.NewInterface(nil)
)