mirror of
https://github.com/vsariola/sointu.git
synced 2026-02-02 05:40:15 -05:00
12 lines
162 B
Go
12 lines
162 B
Go
//go:build native
|
|
|
|
package cmd
|
|
|
|
import (
|
|
"github.com/vsariola/sointu/vm/compiler/bridge"
|
|
)
|
|
|
|
func init() {
|
|
Synthers = append(Synthers, bridge.NativeSynther{})
|
|
}
|