Files
evening_detective/internal/modules/formatter/interface.go
T
2026-03-02 02:25:22 +07:00

6 lines
81 B
Go

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