mirror of
https://github.com/vsariola/sointu.git
synced 2025-07-19 13:34:34 -04:00
13 lines
244 B
Go
13 lines
244 B
Go
//go:build !cgo
|
|
|
|
package cmd
|
|
|
|
import (
|
|
"github.com/vsariola/sointu/tracker"
|
|
)
|
|
|
|
func NewMidiContext(broker *tracker.Broker) tracker.MIDIContext {
|
|
// with no cgo, we cannot use MIDI, so return a null context
|
|
return tracker.NullMIDIContext{}
|
|
}
|