1#include "target.hpp"
2
3bool Target::do_start()
4{
5 return true;
6}
7
8bool Target::do_stop()
9{
10 return true;
11}
12
13bool Target::do_load(const toml::table &)
14{
15 return true;
16}
17