Updated shoboi refresh tool
This commit is contained in:
parent
2e2609b3a6
commit
65bdc9b92e
@ -36,6 +36,17 @@ func main() {
|
||||
}
|
||||
}
|
||||
|
||||
switch queue {
|
||||
case "high":
|
||||
refreshQueue(highPriority)
|
||||
|
||||
case "medium":
|
||||
refreshQueue(mediumPriority)
|
||||
|
||||
case "low":
|
||||
refreshQueue(lowPriority)
|
||||
|
||||
default:
|
||||
color.Cyan("High priority queue (%d):", len(highPriority))
|
||||
refreshQueue(highPriority)
|
||||
|
||||
@ -44,6 +55,7 @@ func main() {
|
||||
|
||||
color.Cyan("Low priority queue (%d):", len(lowPriority))
|
||||
refreshQueue(lowPriority)
|
||||
}
|
||||
|
||||
color.Green("Finished.")
|
||||
}
|
||||
|
@ -8,10 +8,12 @@ import (
|
||||
|
||||
// Shell parameters
|
||||
var animeID string
|
||||
var queue string
|
||||
|
||||
// Shell flags
|
||||
func init() {
|
||||
flag.StringVar(&animeID, "id", "", "ID of the anime you want to refresh")
|
||||
flag.StringVar(&queue, "queue", "", "Queue type you want to refresh (high, medium, low)")
|
||||
flag.Parse()
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user