xesite/vendor/github.com/GeertJohan/go.rice/rice/identifier.go

15 lines
258 B
Go
Raw Normal View History

2017-12-13 18:43:58 +00:00
package main
import (
"strconv"
"github.com/GeertJohan/go.incremental"
)
var identifierCount incremental.Uint64
func nextIdentifier() string {
num := identifierCount.Next()
return strconv.FormatUint(num, 36) // 0123456789abcdefghijklmnopqrstuvwxyz
}