started on multi server roles configuration

This commit is contained in:
Will Tekulve
2016-02-26 23:47:30 -05:00
parent b1511984ec
commit d565849a35
6 changed files with 241 additions and 14 deletions

View File

@@ -0,0 +1,17 @@
def bold(text):
return "**"+str(text)+"**"
def italics(text):
return "*"+str(text)+"*"
def strikethrough(text):
return "~~"+str(text)+"~~"
def underline(text):
return "__"+str(text)+"__"
def box(text):
return "```"+str(text)+"```"
def inline(text):
return "`"+str(text)+"`"