https://github.com/mitchs-dev/library-go
Go library which I use to provide standardizations across my Go projects
https://github.com/mitchs-dev/library-go
Last synced: about 2 months ago
JSON representation
Go library which I use to provide standardizations across my Go projects
- Host: GitHub
- URL: https://github.com/mitchs-dev/library-go
- Owner: mitchs-dev
- License: mit
- Created: 2024-09-02T19:58:01.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-03-07T00:19:36.000Z (3 months ago)
- Last Synced: 2025-03-07T01:24:16.336Z (3 months ago)
- Language: Go
- Homepage:
- Size: 112 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Go Library
[](https://pkg.go.dev/github.com/mitchs-dev/library-go)
## 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/`.
For example, if you want to use the `generator` package, you can simply import it in your project like this:
```go
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.