remove mod/admin role command

This commit is contained in:
Dustin Pianalto
2021-01-26 00:08:20 -09:00
parent 25026d7010
commit e09824dbd3
2 changed files with 20 additions and 5 deletions
+7
View File
@@ -12,3 +12,10 @@ func RemoveDuplicateStrings(s []string) []string {
}
return o
}
func PluralizeString(s string, i int) string {
if i == 1 {
return s
}
return s + "s"
}