aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/nekoimport.go
blob: 5082d8adb61f625c934d1d8a8043cf365dd91214 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package main

import (
	_ "github.com/adammathes/neko/util"
	"github.com/adammathes/neko/models/feed"
	"fmt"
	"io/ioutil"
	"log"
	"os"
	"strings"
)

func main() {
	if len(os.Args) < 2 {
		fmt.Printf("usage: nekoimport config.json <feeds.txt>\n\n format is one URL per line\n")
	}

	fb, err := ioutil.ReadFile(os.Args[2])
	if err != nil {
		log.Fatal("could not read file\n")
	}

	feeds := strings.Split(string(fb), "\n")
	for _,f := range feeds {
		feed.NewFeed(f)
	}
}