From 70140b2531556fa21008d4b9a711864752cc88a4 Mon Sep 17 00:00:00 2001 From: dz <56111086+ZYDeng91@users.noreply.github.com> Date: Mon, 6 May 2024 19:45:14 +0800 Subject: [PATCH] all: update README (#236) --- 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() {