Implement repertoire REST API

This commit is contained in:
Szymon Nowakowski
2024-12-25 22:32:33 +01:00
parent 8ef3572e79
commit b3ec1b9463
3 changed files with 217 additions and 3 deletions

View File

@@ -12,6 +12,9 @@ export const AttachmentId = Brand.nominal<AttachmentId>();
export type PieceId = Brand.Branded<UUID, "PieceId">;
export const PieceId = Brand.nominal<PieceId>();
export type RepertoireId = Brand.Branded<UUID, "RepertoireId">;
export const RepertoireId = Brand.nominal<RepertoireId>();
export type RequestId = Brand.Branded<UUID, "RequestId">;
export const RequestId = Brand.nominal<RequestId>();