13 lines
176 B
Go
13 lines
176 B
Go
package commands
|
|
|
|
var AdminIDs = []int64{126131628}
|
|
|
|
func IsAdmin(userID int64) bool {
|
|
for _, id := range AdminIDs {
|
|
if id == userID {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|