2026-04-06 17:36:41 +09:00
|
|
|
#include "dispatch.h"
|
2026-04-06 17:24:34 +09:00
|
|
|
#include "handlers.h"
|
2026-04-05 21:04:56 +09:00
|
|
|
|
2026-04-06 17:36:41 +09:00
|
|
|
static constexpr handler_entry handlers[] = {
|
|
|
|
|
{RequestPICOBOOT::ext_id, handle_picoboot},
|
|
|
|
|
{RequestInfo::ext_id, handle_info},
|
|
|
|
|
};
|
2026-04-05 21:04:56 +09:00
|
|
|
|
|
|
|
|
int main() {
|
2026-04-06 17:36:41 +09:00
|
|
|
dispatch(handlers);
|
2026-04-05 21:04:56 +09:00
|
|
|
}
|