├── .gitignore ├── LICENSE ├── README.md ├── client.go ├── example ├── config │ └── settings.yaml └── example.go ├── go.mod ├── go.sum ├── task.go └── util.go /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NICEXAI/fstask/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NICEXAI/fstask/HEAD/README.md -------------------------------------------------------------------------------- /client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NICEXAI/fstask/HEAD/client.go -------------------------------------------------------------------------------- /example/config/settings.yaml: -------------------------------------------------------------------------------- 1 | server: 2 | port: 8081 -------------------------------------------------------------------------------- /example/example.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NICEXAI/fstask/HEAD/example/example.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NICEXAI/fstask/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NICEXAI/fstask/HEAD/go.sum -------------------------------------------------------------------------------- /task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NICEXAI/fstask/HEAD/task.go -------------------------------------------------------------------------------- /util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NICEXAI/fstask/HEAD/util.go --------------------------------------------------------------------------------