Rename commands to match API

This commit is contained in:
Nick Chambers 2022-08-19 23:08:09 -05:00
parent 9a27ccb8d7
commit 5de4e9496a
3 changed files with 3 additions and 3 deletions

View File

@ -1,2 +1,2 @@
# FIXME: build this dynamically
__all__ = ["account", "help", "region", "vpc"]
__all__ = ["account", "help", "regions", "vpcs"]

View File

@ -1,7 +1,7 @@
import vultron.cmd
import vultron.display
class Region(vultron.cmd.Command):
class Regions(vultron.cmd.Command):
"""Query for information on Vultr regions."""
def init(self):

View File

@ -1,7 +1,7 @@
import vultron.cmd
import vultron.display
class Vpc(vultron.cmd.Command):
class Vpcs(vultron.cmd.Command):
"""Query for information on VPCs."""
def vultron_list(self):