-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathvdns
executable file
·29 lines (25 loc) · 832 Bytes
/
vdns
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/usr/bin/env python3
import click
import requests
import json
from vegadns_cli.common import cli
import vegadns_cli.commands.accounts
import vegadns_cli.commands.domains
import vegadns_cli.commands.default_records
import vegadns_cli.commands.records
import vegadns_cli.commands.export
import vegadns_cli.commands.groups
import vegadns_cli.commands.groups
import vegadns_cli.commands.groupmembers
import vegadns_cli.commands.config
import vegadns_cli.commands.domaingroupmaps
import vegadns_cli.commands.updatedata
import vegadns_cli.commands.apikeys
import vegadns_cli.commands.upgrade
import vegadns_cli.commands.audit_logs
import vegadns_cli.commands.locations
import vegadns_cli.commands.location_prefixes
import vegadns_cli.commands.get_token
import vegadns_cli.commands.version
if __name__ == "__main__":
cli(obj={})