A small sample application to perform and check CRUD operations backed by MYSQL
sudo systemctl start docker
docker compose up
mysql -u root -p pass
create database users_db;
create table users (id int auto_increment primary key, name varchar(100), email varchar(200), age int);
go build main.go
./main
This should pretty much launch the server on port 8080
Read code to find out supported operations, and dump.json to push the data in the db