-- | Help.hs
-- Simple module with help strings.
module Help (
help,
info
) where
help =
"Commands:"++
"\n---\n"++
">><post_number>[SAGE] [http://img_url]\n"++
"<message>\n\n"++
"create post"++
"\n---\n"++
"*<tag> [http://img_url]\n"++
"<message>\n\n"++
"create thread"++
"\n---\n"++
"del <post_number> <password>\n\n"++
"delete post"++
"\n---\n"++
"help\n\n"++
"show this message"++
"\n---\n"++
"info\n\n"++
"verbose help"++
"\n---"
info = "Full info can be found at http://touhou.ru/kagami/primula/specification.ru.txt"