Hammer out start of entry point

This commit is contained in:
Nick Chambers 2022-08-17 09:54:45 -05:00
parent 3118437b27
commit e6ef28b5af
4 changed files with 6 additions and 0 deletions

0
vultron/__init__.py Normal file
View File

0
vultron/api/__init__.py Normal file
View File

3
vultron/api/api.py Normal file
View File

@ -0,0 +1,3 @@
class VultrApi:
def init(**kwargs):
print(kwargs)

View File

@ -1,2 +1,5 @@
from vultron.api import VultrApi
def main():
api = VultrApi()
print("Hello, world!")