2026-03-07 05:30:18 +07:00

7 lines
107 B
Go

package cleaner
type ICleaner interface {
ClearCode(code string) string
ClearText(text string) string
}