Skip to content

Fasunle/gotils

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 

Repository files navigation

A simple utility package for golang

This package should be used only in development. If neccessary, the code can be used for production after neccessary security evaluations have been done.

Installation

go get github.com/Fasunle/gotils

Usage

import (
    "fmt"
    "github.com/Fasunle/gotils"
)

func main(){

    var tools gotils.Tools

    random := tools.RandomString(12)
    fmt.Println(random)
}