Files
evening_detective_server/internal/modules/formatter/interface.go
T
2026-07-13 23:52:04 +07:00

7 lines
115 B
Go

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