mirror of
https://github.com/fumiama/ahsai.git
synced 2026-06-04 23:30:24 +08:00
12 lines
267 B
Go
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")
|
|
}
|