Polishing

This commit is contained in:
Brian Clozel
2025-04-01 17:27:04 +02:00
parent 3c97533725
commit 4ce9ca71c2

View File

@@ -70,10 +70,13 @@ public class LocalContextBookController {
return List.of();
}
record BookAndAuthor(Book book, Author author) {}
record BookAndAuthor(Book book, Author author) {
}
record Book(long id, String title, long authorId) {}
record Book(long id, String title, long authorId) {
}
record Author(long id, String name) {}
record Author(long id, String name) {
}
}