blob: 59044324d7c2b67f813de85d0be5a7214bbf6572 [file] [log] [blame]
Dhruvaraj Subhashchandrana07f34f2024-05-16 23:01:32 -05001#include "dump_monitor.hpp"
2
3#include <sdbusplus/bus.hpp>
4#include <sdbusplus/bus/match.hpp>
5
6#include <exception>
7#include <iostream>
8#include <variant>
9
10int main()
11{
12 openpower::dump::DumpMonitor monitor;
13 monitor.run();
14 return 0;
15}