This repository has no description
1//go:build !linux
2
3package spindle
4
5import (
6 "context"
7 "fmt"
8
9 "tangled.org/core/spindle/config"
10 "tangled.org/core/spindle/db"
11 "tangled.org/core/spindle/models"
12)
13
14func newMicrovmEngine(context.Context, *config.Config, *db.DB) (models.Engine, error) {
15 return nil, fmt.Errorf("microvm engine is only supported on Linux")
16}