Skip to content

Go library which I use to provide standardizations across my Go projects

License

Notifications You must be signed in to change notification settings

mitchs-dev/library-go

Repository files navigation

Go Library

Go Reference

What is this?

This is a Go library which I use to provide standardizations across my Go projects. All packages included in this library are meant to be well documented so that they could be used for any Go project.

How to use this library?

It's very easy to use this library. You can simply import the package you want to use in your project. You will want to use the following path: github.com/mitchs-dev/library-go/<package-name>.

For example, if you want to use the generator package, you can simply import it in your project like this:

import (
    "github.com/mitchs-dev/library-go/generator"
    "fmt"

)

func main() {
    fmt.Println("Here's a random string: " + generator.RandomString(10))
}

Note: Don't forget to get the package by running go get -u github.com/mitchs-dev/library-go/generator or go mod tidy if you're using Go modules.

About

Go library which I use to provide standardizations across my Go projects

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages