1
0
mirror of https://github.com/fumiama/ahsai.git synced 2026-06-04 23:30:24 +08:00
Files
ahsai/play_stub.go
2022-08-08 11:28:21 +08:00

12 lines
267 B
Go

//go:build !android && !darwin && !js && !windows
// +build !android,!darwin,!js,!windows
package ahsai
import "errors"
// PlayOgg cut leading demo text and play directly
func PlayOgg(u string) error {
return errors.New("cannot play directly on this platform")
}