Put everything in main package for simplicity for now

This commit is contained in:
Ben Shiller 2025-01-29 21:48:35 -06:00
parent e08b03eaee
commit df524732ae
Signed by: shillerben
GPG Key ID: 7B4602B1FBF82986
2 changed files with 2 additions and 4 deletions

View File

@ -2,12 +2,10 @@ package main
import ( import (
"fmt" "fmt"
"git.shillerben.com/shillerben/go-rss/rss"
) )
func main() { func main() {
items, err := rss.FetchRss("https://rss.slashdot.org/Slashdot/slashdotMain") items, err := FetchRss("https://rss.slashdot.org/Slashdot/slashdotMain")
if err != nil { if err != nil {
fmt.Println(err) fmt.Println(err)
} }

View File

@ -1,4 +1,4 @@
package rss package main
import ( import (
"fmt" "fmt"