inboxer/internal/utils/uuid.go
cclohmar ca970104ee chore: initial commit — ExpenseFlow AI-Powered Expense Tracker
- Passwordless email OTP authentication
- Event-based expense tracking with HTMX UI
- AI receipt extraction via DeepSeek Vision API
- CSV/PDF report generation with email filing
- PWA with service worker and manifest
- Mobile-first responsive design
- SQLite database with auto-migration
2026-05-29 19:43:30 +00:00

11 lines
210 B
Go

// 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()
}