10 lines
150 B
Go
10 lines
150 B
Go
package helper
|
|
|
|
func Pre(msg string) string {
|
|
return "<pre>" + msg + "</pre>"
|
|
}
|
|
|
|
func Code(msg string) string {
|
|
return "<code>" + msg + "</code>"
|
|
}
|