Add missing imports

Fix issue #75
This commit is contained in:
Matthieu Sansen
2023-05-02 22:26:56 +02:00
parent c4d6e9d939
commit 4098618066
2 changed files with 4 additions and 0 deletions

View File

@@ -1,6 +1,8 @@
package ffmpeg_go package ffmpeg_go
import ( import (
"os/exec"
"syscall"
"testing" "testing"
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"

View File

@@ -5,8 +5,10 @@ import (
"errors" "errors"
"io/ioutil" "io/ioutil"
"os" "os"
"os/exec"
"path/filepath" "path/filepath"
"strconv" "strconv"
"syscall"
"github.com/u2takey/go-utils/rand" "github.com/u2takey/go-utils/rand"
) )