moved regex initialization to init function
This commit is contained in:
parent
dc61d27150
commit
fb2806649b
1
main.go
1
main.go
@ -32,7 +32,6 @@ var (
|
||||
)
|
||||
|
||||
func main() {
|
||||
initRegexes()
|
||||
flag.Parse()
|
||||
|
||||
if *showVersion {
|
||||
|
@ -16,7 +16,7 @@ var (
|
||||
uptimeRegex *regexp.Regexp
|
||||
)
|
||||
|
||||
func initRegexes() {
|
||||
func init() {
|
||||
protoRegex, _ = regexp.Compile("^([^\\s]+)\\s+BGP\\s+([^\\s]+)\\s+([^\\s]+)\\s+([^\\s]+)\\s+(.*?)\\s*$")
|
||||
routeRegex, _ = regexp.Compile("^\\s+Routes:\\s+(\\d+) imported, \\d+ filtered, (\\d+) exported")
|
||||
uptimeRegex, _ = regexp.Compile("^(?:((\\d+):(\\d{2}):(\\d{2}))|\\d+)$")
|
||||
|
Loading…
x
Reference in New Issue
Block a user