This Golang tutorial help to understand marshalling and un-marshalling of data using Golang. We can encode and decode struct data using marshal and unmarshal.
Continue reading

This Golang tutorial help to understand marshalling and un-marshalling of data using Golang. We can encode and decode struct data using marshal and unmarshal.
Continue reading
This Golang tutorial help to create http rest call using mux package. I am not using any framework, Its use only core golang programming to create http rest call.
I am creating a rest call that will take id as parameters and return as a json data, Next tutorial will have how to handle JSON data with Golang http package.
Continue readingThis is basic golang tutorials to access third party API using HTTP.I am using ECHO Golang framework, Its fast and popular web framework.We are processing data and sending response using Echo HTTP methods.
Continue reading
This is another rest api tutorial that help to create restful api using echo framework and MySQL database. We will create CRUD operations on employee module that will have create record, get all records and delete record.
I have left update record functionality, This work for you to create rest call to update record into MySQL database.I am using MySQL database to store and get data, Already shared Creating a Go(lang) API with Echo Framework and PostgreSQL.
Continue reading
This go lang tutorial help to create CRUD operation api using postgreSQL database.We will create rest api to add, edit and delete record from postgreSQL table.Its very simple and easy using ECHO web framework. This 'todo'
application help to create employee record, update employee and delete employee from database using Echo framework.
Continue reading