refactor: remove logging in algorithms

This commit is contained in:
Unlock Music Dev
2022-11-19 07:25:40 +08:00
parent a2c55721cc
commit e2fc56ddb2
8 changed files with 50 additions and 74 deletions

View File

@@ -4,10 +4,11 @@ import (
"bytes"
"encoding/binary"
"errors"
"github.com/unlock-music/cli/algo/common"
"strconv"
"strings"
"unicode"
"github.com/unlock-music/cli/algo/common"
)
var (
@@ -31,10 +32,6 @@ type Decoder struct {
audio []byte
}
func (d *Decoder) GetCoverImage() []byte {
return nil
}
func (d *Decoder) GetAudioData() []byte {
return d.audio
}