vega/botlib/registry.go

12 lines
133 B
Go
Raw Normal View History

2020-04-11 14:39:19 -04:00
package botlib
import (
"net/url"
)
var Registry map[string]url.URL
func InitRegistry() {
Registry = make(map[string]url.URL)
}