generated from VLADIMIR/template
6 lines
81 B
Go
6 lines
81 B
Go
package formatter
|
|
|
|
type IFormatter interface {
|
|
FormatText(text string) string
|
|
}
|