mirror of
https://github.com/asciimoo/wuzz
synced 2024-11-05 00:00:24 +00:00
10 lines
125 B
Go
10 lines
125 B
Go
|
package formatter
|
||
|
|
||
|
type htmlFormatter struct {
|
||
|
textFormatter
|
||
|
}
|
||
|
|
||
|
func (f *htmlFormatter) Title() string {
|
||
|
return "[html]"
|
||
|
}
|