blob: f8a1d8254e29cf40dc67a52322738bcce9dca0c1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
#include <library/cpp/monlib/service/pages/resource_mon_page.h>
namespace NMonitoring {
struct TTablesorterJsMonPage: public TResourceMonPage {
TTablesorterJsMonPage()
: TResourceMonPage("jquery.tablesorter.js", "jquery.tablesorter.js", JAVASCRIPT)
{
}
};
}
|