mirror of
https://github.com/rls-moe/nyx
synced 2024-11-14 22:12:24 +00:00
19 lines
274 B
Go
19 lines
274 B
Go
package resources
|
|
|
|
import (
|
|
"go.rls.moe/nyx/resources/snowflakes"
|
|
"time"
|
|
)
|
|
|
|
var fountain = snowflakes.Generator{
|
|
StartTime: time.Date(
|
|
2017, 03, 11,
|
|
11, 12, 29,
|
|
0, time.UTC).Unix(),
|
|
}
|
|
|
|
func getID() (int, error) {
|
|
id, err := fountain.NewID()
|
|
return int(id), err
|
|
}
|