two/internal/netif/tap_other.go
GnomeZworc a5bf748bdf
f-25: vm: ajout de la logique de demarrage des vms
Signed-off-by: GnomeZworc <nicolas.boufidjeline@g3e.fr>
2026-04-26 18:25:39 +02:00

13 lines
267 B
Go

//go:build !linux
package netif
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")
}