Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fasunle/gotils
Go API utility
https://github.com/fasunle/gotils
Last synced: 2 days ago
JSON representation
Go API utility
- Host: GitHub
- URL: https://github.com/fasunle/gotils
- Owner: Fasunle
- Created: 2024-02-01T13:54:58.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-05-18T13:59:51.000Z (8 months ago)
- Last Synced: 2024-06-21T15:40:31.249Z (7 months ago)
- Language: Go
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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
```bash
go get github.com/Fasunle/gotils
```## Usage
```go
import (
"fmt"
"github.com/Fasunle/gotils"
)func main(){
var tools gotils.Tools
random := tools.RandomString(12)
fmt.Println(random)
}```