// Package utils provides common utility functions for ExpenseFlow. package utils import ( "github.com/google/uuid" ) // New generates a new UUID v4 string. func New() string { return uuid.New().String() }