# README
REST API for Student CRUD operations
Technologies used:
Go
Cassandra
Docker
Setting up DB
Run the following commands
docker pull cassandra
Start the docker container and enter into CLI
CREATE KEYSPACE connectwise WITH replication = {'class':'SimpleStrategy', 'replication_factor' : 3};
USE KEYSPACE connectwise;
CREATE TABLE student_db(id uuid, age int, class int, deleted boolean, name text, subject text, primary key (id));
Navigate into cloned folder
go run main.go
# Packages
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author