10 lines
147 B
Go
10 lines
147 B
Go
package fixers
|
|
|
|
import (
|
|
"github.com/mmcdole/gofeed"
|
|
)
|
|
|
|
func githubFixer(item *gofeed.Item) (string, string) {
|
|
return item.Title, item.Content
|
|
}
|