package
3.8.26
Repository: https://github.com/abulo/ratel.git
Documentation: pkg.go.dev

# README

Quick Start

Generate an ID


import (
  "fmt"
  "github.com/abulo/ratel/v3/snowflake"
)

func ExampleGenInt64ID() {
  id := snowflake.CommonConfig.GenInt64ID()
  fmt.Printf("id generated: %v", id)
}