mirror of
https://github.com/Hopiu/micro.git
synced 2026-05-03 12:24:47 +00:00
11 lines
216 B
Go
11 lines
216 B
Go
package config
|
|
|
|
const (
|
|
DoubleClickThreshold = 400 // How many milliseconds to wait before a second click is not a double click
|
|
)
|
|
|
|
var Bindings map[string]string
|
|
|
|
func init() {
|
|
Bindings = make(map[string]string)
|
|
}
|