tind/docs/TinD default values.md
Matthew Stobbs 3a88b108bb Documentation
Signed-off-by: Matthew Stobbs <matthew@stobbs.ca>
2024-02-25 21:46:49 -07:00

25 lines
492 B
Markdown

TinD is highly configurable, and defaults to an extremely simple set of values:
- Default size of 4 bytes, or 32bits
- Default character set of upper and lower case alphabet characters `abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ`
# Usage Examples
```go
package main
import (
"git.staur.ca/stobbsm/tind"
)
func main() {
id := tind.Gen()
fmt.Println(id.String())
}
```
Output:
```sh
CvHG
```
Run the examples found in the the `examples` folder to see some of what can be
done.