atom/content.go

9 lines
111 B
Go

package atomfeed
type Content interface {
isContent() bool
hasSRC() bool
getType() string
Check() error
}