Skip to content

A simple server implementing CRUD operation using golang

Notifications You must be signed in to change notification settings

TheMightyRaider/golang-rest

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

REST USING GOLANG

Just a learning project for golang, Implemented CRUD operations with golang as its server and MySQL as database.

API

  • /home - Home page
  • /song/all - Get all entry
  • /song/create - Create new entry
  • /song/{song} - Get a particular entry
  • /song/update/{song} - Update a particular entry
  • /song/delete/{song} - Delete a particular entry

Difficulties / Improvements :

  • Setting up the file structure was pain in the ass. [ Better approach is to use go modules ]
  • Need to learn about struct method and interfaces
  • Better Approach for handling database error
  • Learn about migration using golang

About

A simple server implementing CRUD operation using golang

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages