Source code used to demo the integration with Chainloop seen here
Note: Repository forked from https://github.com/bopbi/simple-todo
A Simple REST Server app, using golang and sqlite, build for testing client app, the SQLITE file already contain some example data
GET ALL
GET todosGET BY ID, example id is 12
GET todos/12INSERT, it will return the json for new todo
POST todosUPDATE BY ID, example id is 12 and it will return the json for new todo
PUT todos/12DELETE BY ID, example id is 12
DELETE todos/12