// Package utils provides common utility functions for ReceiptNext. package utils import ( "time" "github.com/google/uuid" ) // NewUUID generates a new UUID v4 string. func NewUUID() string { return uuid.New().String() } // Timestamp returns the current UTC time formatted as RFC3339. func Timestamp() string { return time.Now().UTC().Format(time.RFC3339) }