17 lines
207 B
Go
17 lines
207 B
Go
|
package atomfeed
|
||
|
|
||
|
import "errors"
|
||
|
|
||
|
type ID struct {
|
||
|
*CommonAttributes
|
||
|
URI URI `xml:"uri"`
|
||
|
}
|
||
|
|
||
|
func (i *ID) Check() error {
|
||
|
if i.URI == "" {
|
||
|
return errors.New("uri element of id empty")
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|