1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-06-19 00:17:51 +02:00

add xml parser

This commit is contained in:
Kelly Brazil
2020-02-03 22:13:06 -08:00
parent b5ebf8b76a
commit 547c6d3d59
5 changed files with 172 additions and 2 deletions

View File

@ -40,8 +40,10 @@ import jc.parsers.systemctl_luf
import jc.parsers.uname
import jc.parsers.uptime
import jc.parsers.w
import jc.parsers.xml
import jc.parsers.yaml
parser_map = {
'--arp': jc.parsers.arp,
'--crontab': jc.parsers.crontab,
@ -76,6 +78,7 @@ parser_map = {
'--uname': jc.parsers.uname,
'--uptime': jc.parsers.uptime,
'--w': jc.parsers.w,
'--xml': jc.parsers.xml,
'--yaml': jc.parsers.yaml
}