x.go 286 B

123456789101112131415161718192021222324
  1. package xmlns
  2. import (
  3. "odf/model"
  4. )
  5. type AttrType int
  6. const (
  7. NONE AttrType = iota
  8. STRING
  9. )
  10. type Mime string
  11. const (
  12. MimeText Mime = "application/vnd.oasis.opendocument.text"
  13. )
  14. var Typed map[model.AttrName]AttrType
  15. func init() {
  16. Typed = make(map[model.AttrName]AttrType)
  17. }