15 lines
256 B
Python
15 lines
256 B
Python
#!/usr/bin/env python3
|
|
|
|
ungleich_api = {}
|
|
|
|
|
|
class ungleichAPI(object):
|
|
def __init__(self, version='v1'):
|
|
self.version = version
|
|
|
|
def create_vm(self, id):
|
|
vm = {}
|
|
vm['ipv6'] = []
|
|
|
|
def create_user(self):
|
|
user = {}
|