blob: b9bd92dd9dabec60a5dfb1dc06e345514d4e45c8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#pragma once
#include <library/cpp/monlib/service/pages/resource_mon_page.h>
namespace NMonitoring {
struct TBootstrapFontsEotMonPage: public TResourceMonPage {
TBootstrapFontsEotMonPage()
: TResourceMonPage("static/fonts/glyphicons-halflings-regular.eot", "static/fonts/glyphicons-halflings-regular.eot", FONT_EOT, true)
{
}
};
struct TBootstrapFontsSvgMonPage: public TResourceMonPage {
TBootstrapFontsSvgMonPage()
: TResourceMonPage("static/fonts/glyphicons-halflings-regular.svg", "static/fonts/glyphicons-halflings-regular.svg", SVG, true)
{
}
};
struct TBootstrapFontsTtfMonPage: public TResourceMonPage {
TBootstrapFontsTtfMonPage()
: TResourceMonPage("static/fonts/glyphicons-halflings-regular.ttf", "static/fonts/glyphicons-halflings-regular.ttf", FONT_TTF, true)
{
}
};
struct TBootstrapFontsWoffMonPage: public TResourceMonPage {
TBootstrapFontsWoffMonPage()
: TResourceMonPage("static/fonts/glyphicons-halflings-regular.woff", "static/fonts/glyphicons-halflings-regular.woff", FONT_WOFF, true)
{
}
};
}
|