Files
evening_detective/internal/modules/formatter/interface.go
T
2026-05-29 08:48:51 +07:00

7 lines
115 B
Go

package formatter
type IFormatter interface {
FormatText(text string) string
FormatString(text string) string
}