This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

core / spindle / engine_microvm_other.go
327 B 16 lines
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}