Skip to content

Commit

Permalink
feat: Return mock examples for examples endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
Elscrux committed Jan 25, 2025
1 parent c1111a7 commit a029fe4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ private <InputT, ResultT> Mono<ServerResponse> handleRead(
// Add logging to capture request details
System.out.println("Handling read for manager: " + manager.getType().getId());

var exampleProblems = getExampleInput(manager);
var exampleProblems = List.of("example1", "example2", "example3");
System.out.println("Example problems: " + exampleProblems);

if (exampleProblems == null || exampleProblems.isEmpty()) {
Expand Down

0 comments on commit a029fe4

Please sign in to comment.