Files
sointu/cmd/synthers_native.go
5684185+vsariola@users.noreply.github.com 3163f46447 feat!: both native & Go synths are included in the same executables
Closes #200
2025-07-10 17:46:00 +03:00

10 lines
157 B
Go

//go:build native
package cmd
import "github.com/vsariola/sointu/vm/compiler/bridge"
func init() {
Synthers = append(Synthers, bridge.NativeSynther{})
}