python-compute/node_agent/volume/storage_pool.py
2023-08-27 23:42:56 +03:00

10 lines
158 B
Python

import libvirt
class StoragePool:
def __init__(self, pool: libvirt.virStoragePool):
self.pool = pool
def create_volume(self):
pass