-
Notifications
You must be signed in to change notification settings - Fork 0
/
html_messages.h
33 lines (24 loc) · 1.55 KB
/
html_messages.h
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
#ifndef HTML_MESSAGES_H
#define HTML_MESSAGES_H
#include <string>
class Messages
{
public:
static constexpr auto& help_message(){return "<b><u>Тут набор команд</u></b> \
<b>/price</b> - текущий курс \
<b>/line</b> - запрос линии \
<b>/line aaaa.bbb</b> - установка линии \
<b>/stat</b> - данные свечи/линии \
<b>/account</b> - данные аккаунта";}
static constexpr auto& start_message(){return "<b>Привет!</b> \
<pre>Появились деньги?</pre> \
<pre>Нет проблем! Сейчас я все исправлю!</pre>";}
static constexpr auto& stop_message(){return "<b>Пока!</b> \
<pre>Возвращайся дорогой!</pre>";}
static constexpr auto& sample(){return "<b>bold</b>, <strong>bold</strong> \
<i>italic</i>, <em>italic</em> \
<a href=\"URL\">inline URL</a> \
<code>inline fixed-width code</code> \
<pre>pre-formatted fixed-width code block</pre>";}
};
#endif // HTML_MESSAGES_H