123456789101112131415161718192021222324 |
- package xmlns
- import (
- "odf/model"
- )
- type AttrType int
- const (
- NONE AttrType = iota
- STRING
- )
- type Mime string
- const (
- MimeText Mime = "application/vnd.oasis.opendocument.text"
- )
- var Typed map[model.AttrName]AttrType
- func init() {
- Typed = make(map[model.AttrName]AttrType)
- }
|