add modules

This commit is contained in:
2026-07-13 23:52:04 +07:00
parent db746f2123
commit 2b11c49b3c
6 changed files with 224 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
package cleaner
type ICleaner interface {
ClearCode(code string) string
ClearText(text string) string
}