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