32 lines
511 B
Python
32 lines
511 B
Python
import os
|
|
|
|
|
|
class instace:
|
|
def __init__(self):
|
|
pass
|
|
|
|
def new(name: str) -> bool:
|
|
"""
|
|
Generates a new instance with the subdomain [name].invario.eu
|
|
|
|
Input:
|
|
- name -> String
|
|
|
|
Output:
|
|
- bool if the initiation works (True: generation worked; False: didnt work)
|
|
"""
|
|
pass
|
|
|
|
class ussage:
|
|
def __init__(self):
|
|
pass
|
|
|
|
def ram():
|
|
""""""
|
|
pass
|
|
|
|
def cpu():
|
|
pass
|
|
|
|
def storage():
|
|
pass |