python-compute/node_agent/volume/storage_pool.py

10 lines
158 B
Python
Raw Normal View History

2023-08-27 23:42:56 +03:00
import libvirt
class StoragePool:
def __init__(self, pool: libvirt.virStoragePool):
self.pool = pool
def create_volume(self):
pass