|
package feed
|
|
|
|
import (
|
|
"errors"
|
|
"local/storage"
|
|
"net/url"
|
|
)
|
|
|
|
type Feed struct{}
|
|
|
|
func New(db storage.DB, values url.Values) (*Feed, error) {
|
|
return nil, errors.New("not impl")
|
|
}
|
|
|
|
func (f *Feed) Read(p []byte) (int, error) {
|
|
return 0, errors.New("not impl")
|
|
}
|