atom/content.go

9 lines
111 B
Go
Raw Normal View History

2024-10-13 17:19:40 +02:00
package atomfeed
type Content interface {
2024-10-15 19:32:14 +02:00
isContent() bool
hasSRC() bool
getType() string
2024-10-13 17:19:40 +02:00
Check() error
}