Restructures database access

Makes it simpler as long as the application is just the CLI
This commit is contained in:
Dennis Schoepf 2024-08-30 17:07:14 +02:00
parent db7ed2fa3b
commit b70a232343
2 changed files with 15 additions and 10 deletions

View file

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