Changeset 0.17.1 (#76)

This commit is contained in:
2026-02-28 01:40:31 +00:00
parent c9141a6896
commit 856dc9b0ac
64 changed files with 8037 additions and 1657 deletions

10
server/store/id.go Normal file
View File

@@ -0,0 +1,10 @@
package store
import "github.com/google/uuid"
// NewID generates a new UUID string.
// Used by SQLite stores where gen_random_uuid() is not available.
// Also usable by Postgres stores — application-side IDs are always valid.
func NewID() string {
return uuid.New().String()
}