repositorypackage
0.0.0-20240507055329-4edd269c5368
Repository: https://github.com/chips03/go-todo-lite.git
Documentation: pkg.go.dev
# Packages
No description provided by the author
# README
Go Todo Lite
Simple Restful API for todo list using Golang and SQLite. Using fiber as HTTP Server and GORM to interact with the database.
:running: Run Locally
Clone the project
https://github.com/chips03/go-todo-lite
Start the server
go run main.go
API Endpoint
url : http://127.0.0.1:3000
/todos
GET
: Get all todo'sPOST
: Create a new todo
/todos/:id
GET
: Get a single todoPUT
: Update a single todo