blob: 9129a836b969db59b2e2048e9d6e145c6698b8d0 [file] [log] [blame]
#pragma once
#include <cstdint>
#include <fmt/ostream.h>
#include <ostream>
namespace velia::health {
enum class State {
OK,
WARNING,
ERROR,
// keep sorted by severity ascending (good ---> bad)
};
std::ostream& operator<<(std::ostream& os, State state);
}