From fa7790e1121627c4ab6b2a72f8140556831b919b Mon Sep 17 00:00:00 2001 From: ZY Deng Date: Mon, 6 May 2024 18:43:49 +0800 Subject: [PATCH] update README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 317189f..cda6663 100644 --- a/README.md +++ b/README.md @@ -90,6 +90,7 @@ The following is an example of loading and playing an MP3 file: package main import ( + "bytes" "time" "os" @@ -174,12 +175,11 @@ In such cases you might want to stream the file. Luckily this is very simple, ju package main import ( - "bytes" "os" "time" + "github.com/ebitengine/oto/v3" "github.com/hajimehoshi/go-mp3" - "github.com/hajimehoshi/oto/v3" ) func main() {