import "go-euphoria.io/heim.proto.snowflake" // Generate a new snowflake string sf := snowflake.New() // Get the string representation of the snowflake ID id := sf.String() // Parse a snowflake string parsed, err := snowflake.Parse("1-2-3") if err != nil { // handle error } // Get the snowflake ID as an int64 value := parsed.Int64()In the above example, we import the go-euphoria.io/heim.proto.snowflake package and generate a new snowflake string using the `New()` function. We then extract the string representation of the generated ID using the `String()` method. Similarly, we can also parse a snowflake string using the `Parse()` function and get its value as an int64 using the `Int64()` method. Overall, the go-euphoria.io/heim.proto.snowflake package provides an easy-to-use interface for generating and parsing Snowflake IDs in Go.