Categorygithub.com/dotWicho/utilities
repositorypackage
1.0.7
Repository: https://github.com/dotwicho/utilities.git
Documentation: pkg.go.dev

# README

utilities

Go Quality Report GoDoc

utilities is a Go Library to share useful code, just that

Getting started

  • API documentation is available via godoc.

Installation

To install utilities package, you need to install Go and set your Go workspace first.

1 - The first need Go installed (version 1.13+ is required). Then you can use the below Go command to install Requist

$ go get -u github.com/dotWicho/utilities

And then Import it in your code:

package main

import "github.com/dotWicho/utilities"

Or

2 - Use as module in you project (go.mod file):

module myproject

go 1.13

require (
	github.com/dotWicho/utilities v1.0.6
)