identifiers

package
v2.0.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 23, 2026 License: AGPL-3.0 Imports: 1 Imported by: 0

Documentation

Overview

Package identifiers is a handy place to request a new string identifier from.

Index

Examples

Constants

This section is empty.

Variables

This section is empty.

Functions

func New

func New() string

New produces a new string ID.

Example
package main

import (
	"fmt"

	"github.com/verygoodsoftwarenotvirus/platform/v2/identifiers"
)

func main() {
	id := identifiers.New()

	// IDs are 20-character xid strings
	fmt.Println(len(id))
}
Output:

20

func Validate

func Validate(x string) error

Validate validates a string ID.

Example
package main

import (
	"fmt"

	"github.com/verygoodsoftwarenotvirus/platform/v2/identifiers"
)

func main() {
	id := identifiers.New()
	err := identifiers.Validate(id)
	fmt.Println(err)
}
Output:

<nil>

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL