refactor: use io.Reader instead of custom method

This commit is contained in:
Unlock Music Dev
2022-11-19 07:25:43 +08:00
parent 4365628bff
commit 67ff0c44cd
17 changed files with 420 additions and 460 deletions

View File

@ -1,11 +1,12 @@
package common
import (
"io"
"path/filepath"
"strings"
)
type NewDecoderFunc func([]byte) Decoder
type NewDecoderFunc func(rd io.ReadSeeker) Decoder
type decoderItem struct {
noop bool