mirror of
https://github.com/thatmattlove/hyperglass.git
synced 2026-02-02 15:29:27 +00:00
12 lines
268 B
Python
12 lines
268 B
Python
"""Map NOS and Commands to Parsing Functions."""
|
|
|
|
# Project
|
|
from hyperglass.parsing.juniper import parse_juniper
|
|
|
|
nos_parsers = {
|
|
"juniper": {
|
|
"bgp_route": parse_juniper,
|
|
"bgp_aspath": parse_juniper,
|
|
"bgp_community": parse_juniper,
|
|
}
|
|
}
|