Merge pull request #87 from msansen/fix/issue-75-missing-imports

Add missing imports
This commit is contained in:
leiiwang
2023-05-19 18:52:13 +08:00
committed by GitHub
2 changed files with 4 additions and 0 deletions

View File

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

View File

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