12 lines
222 B
C++
12 lines
222 B
C++
#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);
|
|
}
|