Remove unused file

This commit is contained in:
Daniel Mason 2025-06-26 20:28:55 +12:00
parent ca38e5bb85
commit 200a08ecbc
Signed by: idanoo
GPG key ID: 387387CDBC02F132

View file

@ -1,10 +0,0 @@
package bot
func orderMap(m map[string]int64) []string {
keys := make([]string, 0, len(m))
for k := range m {
keys = append(keys, k)
}
return keys
}