mirror of
https://github.com/cgzirim/seek-tune.git
synced 2025-12-17 08:54:19 +00:00
fix #34: add missing imports wav.go
This commit is contained in:
parent
b6fc65eb73
commit
7e883c30d5
1 changed files with 8 additions and 0 deletions
|
|
@ -2,14 +2,22 @@ package wav
|
|||
|
||||
import (
|
||||
"bytes"
|
||||
"context"
|
||||
"encoding/base64"
|
||||
"encoding/binary"
|
||||
"encoding/json"
|
||||
"errors"
|
||||
"fmt"
|
||||
"io/ioutil"
|
||||
"log/slog"
|
||||
"os"
|
||||
"os/exec"
|
||||
"song-recognition/models"
|
||||
"song-recognition/utils"
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"github.com/mdobak/go-xerrors"
|
||||
)
|
||||
|
||||
// WavHeader defines the structure of a WAV header
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue