1
0
mirror of https://github.com/checktheroads/hyperglass synced 2024-05-11 05:55:08 +00:00

13 lines
268 B
Python
Raw Normal View History

2020-05-29 17:50:30 -07:00
"""Map NOS and Commands to Parsing Functions."""
2020-05-29 17:47:53 -07:00
# Project
from hyperglass.parsing.juniper import parse_juniper
nos_parsers = {
"juniper": {
"bgp_route": parse_juniper,
"bgp_aspath": parse_juniper,
"bgp_community": parse_juniper,
}
}