Working with Go String Using Example

This tutorial help to explore go string method. We will create a simple example to understand go string method with the example.

We will create a string and manipulate using string go method. The strings functions are stored into standard library “strings” package.A string is a read-only slice of bytes. You can get more information from Official Docs.

Continue reading

Building a RESTful API in Go Using Mux and Logrus

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 reading