package repository import "context" // UIDGenerator allocates readable UIDs in the form {UIDPrefix}-{Sequence}. type UIDGenerator interface { Next(ctx context.Context, tenantID, uidPrefix string) (string, error) }