freed/internal/database/feed.go
Dennis b70a232343 Restructures database access
Makes it simpler as long as the application is just the CLI
2024-08-30 17:07:14 +02:00

8 lines
133 B
Go

package database
import "fmt"
func AddFeed(url string) error {
fmt.Printf("Trying to add new feed by URL: %s", url)
return nil
}