https://github.com/dotmind/gotasks
https://github.com/dotmind/gotasks
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dotmind/gotasks
- Owner: dotmind
- Created: 2019-03-04T10:44:07.000Z (over 7 years ago)
- Default Branch: develop
- Last Pushed: 2022-02-21T17:18:14.000Z (over 4 years ago)
- Last Synced: 2025-12-26T16:37:02.312Z (6 months ago)
- Language: Go
- Size: 15.7 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# gotasks
**Run**
`sh run.sh`
... and go to http://localhost:8080/
## API
**Models**
Task:
* id: `string`
* name: `string`
* description: `string`
* active: `bool`
* time: `number`
* username: `string`
--
*Create a new task*
Route: `/add`
Method: `POST`
JSON Body: `Task`
*Get all tasks*
Route: `/getall`
Method: `GET`
*Update a task*
Route: `/update`
Method: `POST`
JSON Body: `Task` (id required)