1
0
mirror of https://github.com/fumiama/ahsai.git synced 2026-06-27 06:40:26 +08:00
This commit is contained in:
fumiama
2022-08-08 11:28:21 +08:00
parent c88fca4594
commit 3f3bf32553
3 changed files with 49 additions and 27 deletions

11
play_stub.go Normal file
View File

@@ -0,0 +1,11 @@
//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")
}