#pragma once

namespace nall {

struct service {
  explicit operator bool() const { return false; }
  auto command(const string& name, const string& command) -> bool { return false; }
  auto receive() -> string { return ""; }
  auto name() const -> string { return ""; }
  auto stop() const -> bool { return false; }
};

}