├── .gitignore ├── LICENCE ├── README.md ├── go.mod ├── tasker.go └── tasker_test.go /.gitignore: -------------------------------------------------------------------------------- 1 | todo -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthdm/tasker/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthdm/tasker/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/anthdm/tasker 2 | 3 | go 1.18 4 | -------------------------------------------------------------------------------- /tasker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthdm/tasker/HEAD/tasker.go -------------------------------------------------------------------------------- /tasker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthdm/tasker/HEAD/tasker_test.go --------------------------------------------------------------------------------