A minimal TODO List Restfull Api server built with go π¦«
todist/
βββ go.mod # Go module definition
βββ main.go # Main application entry point
βββ pkg/
βββ todist/ # Main package
βββ todist.go # Package implementation
βββ todist_test.go # Package tests
- Go 1.24 or later
- Clone the repository:
git clone https://github.com/codingdestro/todist.git
cd todist- Install dependencies:
go mod tidyTo run the application:
go run main.goTo run all tests:
go test ./pkg/todist/...The project follows standard Go project layout with:
- Main application code in
main.go - Package code in
pkg/todist/ - Tests in
pkg/todist/todist_test.go
This project is licensed under the MIT License - see the LICENSE file for details.