mirror of
https://github.com/AynaLivePlayer/miaosic.git
synced 2026-05-08 16:44:04 +08:00
8 lines
106 B
Go
8 lines
106 B
Go
package tag
|
|
|
|
import "io"
|
|
|
|
func ReadOGGTags(r io.ReadSeeker) (Metadata, error) {
|
|
return fallbackRead(r)
|
|
}
|