This commit is contained in:
2026-03-02 02:25:22 +07:00
parent caaed14ebc
commit 5ab7ae0fcd
6 changed files with 94 additions and 51 deletions
+6
View File
@@ -0,0 +1,6 @@
package cleaner
type ICleaner interface {
// ([Ы-1]) -> ы1, Ы-1 -> ы1
ClearCode(code string) string
}