organizer/main.go

31 lines
580 B
Go
Raw Normal View History

2023-01-13 19:23:36 +01:00
package main
import (
2023-01-13 20:04:57 +01:00
"fmt"
2023-01-13 19:23:36 +01:00
"git.milar.in/nyaanime/logic"
"github.com/fsnotify/fsnotify"
)
func main() {
// get access token once at startup to be sure that an access token is obtainable at all
if _, err := logic.GetAnilistAccessToken(); err != nil {
panic(err) // TODO error handling
}
fsChan, err := WatchDirectory(fsnotify.Create, DownloadPath)
if err != nil {
panic(err) // TODO error handling
}
for file := range fsChan {
2023-01-13 20:04:57 +01:00
fmt.Print("file found:", file)
fileHandled := HandleFile(file)
if !fileHandled {
fmt.Print("file ignored:", file)
}
2023-01-13 19:23:36 +01:00
}
}