blob: e71f8e436c6951a687f889c8ec476c29d14e1b58 [file] [log] [blame]
Matt Spinlerfb35a322018-11-26 14:30:30 -06001#include "button_handler.hpp"
2
George Liu94afa4b2022-06-20 13:36:43 +08003int main(void)
Matt Spinlerfb35a322018-11-26 14:30:30 -06004{
5 auto bus = sdbusplus::bus::new_default();
6
7 phosphor::button::Handler handler{bus};
8
9 while (true)
10 {
11 bus.process_discard();
12 bus.wait();
13 }
14 return 0;
15}