You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// If there are errors in creating it (which could only ever happen because of an OS error related to PRNG), the function panics.
func MustUuidV7() string {
id, err := uuid.NewV7()
if err != nil {
panic(fmt.Errorf("streamfleet: failed to generate a new UUIDv7 value. this should never happen; your operating system may have failed to generate random data or acquire entropy. error: %w", err))