added spam filter

This commit is contained in:
rawleyIfowler
2022-02-26 14:41:10 -06:00
parent 90c6d84a3e
commit c296296faf
3 changed files with 23 additions and 3 deletions

6
utils/spam_checker.go Normal file
View File

@@ -0,0 +1,6 @@
package utils
// TODO: Implement a spam checking module
func IsSpam(t string) bool {
return false
}