mirror of
https://github.com/diamondburned/arikawa.git
synced 2024-11-05 06:26:08 +00:00
cc1975988d
remove boundary limits for DeleteMessages rename deleteMessages to deleteMessagesRaw use constant instead of limit literal add min helper func rename utils.go to math.go
11 lines
131 B
Go
11 lines
131 B
Go
package api
|
|
|
|
// min returns the smaller of the two passed numbers.
|
|
func min(a, b int) int {
|
|
if a < b {
|
|
return a
|
|
}
|
|
|
|
return b
|
|
}
|