mirror of
https://github.com/vsariola/sointu.git
synced 2025-07-19 13:34:34 -04:00
10 lines
157 B
Go
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{})
|
|
}
|