package main import ( "fmt" "time" "euphoria.io/heim/proto/snowflake" ) func main() { workerID := int64(123) epochStart := time.Date(2010, 1, 1, 0, 0, 0, 0, time.UTC) sf := snowflake.New(workerID, epochStart) id := sf.Generate() fmt.Printf("Generated Snowflake ID: %d\n", id) }In this example, we create a new `snowflake` object with a worker ID of 123 and an epoch start time of January 1st, 2010. We then call the `Generate` method to get a new snowflake ID. This package library is available on the euphoria.io website and is used for generating unique identifiers for various distributed systems.