ulthar-framework/packages/fabric/domain/services/uuid-generator.ts

6 lines
102 B
TypeScript

import type { UUID } from "../types/uuid.ts";
export interface UUIDGenerator {
generate(): UUID;
}