16 lines
237 B
Go
16 lines
237 B
Go
package models
|
|
|
|
import (
|
|
"encoding/xml"
|
|
)
|
|
|
|
const (
|
|
XMLNS = "http://www.w3.org/1999/xhtml"
|
|
)
|
|
|
|
type Xhtml struct {
|
|
XMLName xml.Name `xml:"xhtml"`
|
|
Xmlns string `xml:"xmlns,attr"`
|
|
Text string `xml:",chardata"`
|
|
}
|