vorteil/vorteil

View on GitHub
pkg/virtualizers/hyperv/virtualizer_notwindows.go

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
// +build linux darwin

package hyperv

/**
 * SPDX-License-Identifier: Apache-2.0
 * Copyright 2020 vorteil.io Pty Ltd
 */

import "errors"

// initLogs returns an error as this is a windows only hypervisor
func (v *Virtualizer) initLogs() error {
    return errors.New("hyperv is not implemented on this operating system.. how did you get here?")
}