7 lines
72 B
Go
7 lines
72 B
Go
|
package atomfeed
|
||
|
|
||
|
type Text interface {
|
||
|
Check() error
|
||
|
IsText() bool
|
||
|
}
|