- 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
11 lines
210 B
Go
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()
|
|
}
|