blob: 2b342c679ad8cd3e74e856049a52521478ce8e0e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#pragma once
#include "pre_mon_page.h"
namespace NMonitoring {
struct TVersionMonPage: public TPreMonPage {
TVersionMonPage(const TString& path = "ver", const TString& title = "Version")
: TPreMonPage(path, title)
{
}
void OutputText(IOutputStream& out, NMonitoring::IMonHttpRequest&) override;
};
}
|