mirror of
https://github.com/AlchemillaHQ/Sylve.git
synced 2026-06-27 02:46:21 +03:00
18 lines
493 B
Go
18 lines
493 B
Go
// SPDX-License-Identifier: BSD-2-Clause
|
|
//
|
|
// Copyright (c) 2025 The FreeBSD Foundation.
|
|
//
|
|
// This software was developed by Hayzam Sherif <hayzam@alchemilla.io>
|
|
// of Alchemilla Ventures Pvt. Ltd. <hello@alchemilla.io>,
|
|
// under sponsorship from the FreeBSD Foundation.
|
|
|
|
package libvirtServiceInterfaces
|
|
|
|
type LibvirtServiceInterface interface {
|
|
CheckVersion() error
|
|
|
|
ListStoragePools() ([]StoragePool, error)
|
|
CreateStoragePool(name string) error
|
|
DeleteStoragePool(name string) error
|
|
}
|