#include "dispatch.h" #include "handlers.h" static constexpr handler_entry handlers[] = { {RequestPICOBOOT::ext_id, handle_picoboot}, {RequestInfo::ext_id, handle_info}, }; int main() { dispatch(handlers); }