10 lines
158 B
Python
10 lines
158 B
Python
|
import libvirt
|
||
|
|
||
|
|
||
|
class StoragePool:
|
||
|
def __init__(self, pool: libvirt.virStoragePool):
|
||
|
self.pool = pool
|
||
|
|
||
|
def create_volume(self):
|
||
|
pass
|