2021-09-05 20:18:11 +00:00
|
|
|
package main
|
|
|
|
|
|
2021-09-11 19:26:51 +00:00
|
|
|
import "time"
|
2021-09-06 18:19:04 +00:00
|
|
|
|
2021-09-11 19:26:51 +00:00
|
|
|
import . "github.com/firestuff/asana-rules/asanarules"
|
2021-09-05 20:18:11 +00:00
|
|
|
|
2021-09-11 19:26:51 +00:00
|
|
|
func main() {
|
|
|
|
|
Every(5 * time.Second).
|
2021-09-12 20:08:13 +00:00
|
|
|
InWorkspace("flamingcow.io").
|
|
|
|
|
InMyTasksSections("Recently Assigned").
|
|
|
|
|
OnlyIncomplete().
|
|
|
|
|
DueInDays(0).
|
|
|
|
|
PrintTasks()
|
2021-09-10 04:57:54 +00:00
|
|
|
|
2021-09-11 19:26:51 +00:00
|
|
|
Loop()
|
2021-09-05 20:18:11 +00:00
|
|
|
}
|