summaryrefslogtreecommitdiff
path: root/vendor/github.com/leodido/go-urn/kind.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/leodido/go-urn/kind.go')
-rw-r--r--vendor/github.com/leodido/go-urn/kind.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/vendor/github.com/leodido/go-urn/kind.go b/vendor/github.com/leodido/go-urn/kind.go
new file mode 100644
index 000000000..f5e140f0a
--- /dev/null
+++ b/vendor/github.com/leodido/go-urn/kind.go
@@ -0,0 +1,10 @@
+package urn
+
+type Kind int
+
+const (
+ NONE Kind = iota
+ RFC2141
+ RFC7643
+ RFC8141
+)