kind.go 83 B

12345678910
  1. package urn
  2. type Kind int
  3. const (
  4. NONE Kind = iota
  5. RFC2141
  6. RFC7643
  7. RFC8141
  8. )