f-25: vm: ajout de la logique de demarrage des vms

Signed-off-by: GnomeZworc <nicolas.boufidjeline@g3e.fr>
This commit is contained in:
GnomeZworc 2026-04-26 17:27:01 +02:00
commit a5bf748bdf
Signed by: nicolas.boufideline
GPG key ID: 4406BBBF8845D632
4 changed files with 189 additions and 0 deletions

View file

@ -7,3 +7,7 @@ import "errors"
func CreateTap(_ int, _, _ string) error {
return errors.New("netif: tap not supported on this platform")
}
func DeleteTap(_ int, _ string) error {
return errors.New("netif: tap not supported on this platform")
}