cf-modkit 0.6.4

Core ModKit library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error[E0599]: no method named `register` found for struct `modkit::OperationBuilder<Missing, Present, ()>` in the current scope
  --> tests/ui/no_handler.rs:23:10
   |
20 |       let _ = OperationBuilder::<_, _, ()>::get("/tests/v1/test")
   |  _____________-
21 | |         .summary("Test endpoint")
22 | |         .json_response(200, "Success")
23 | |         .register(router, &registry);
   | |         -^^^^^^^^ method not found in `OperationBuilder<Missing, Present, ()>`
   | |_________|
   |
   |
   = note: the method was found for
           - `modkit::OperationBuilder<Present, Present, S>`