mirror of
https://github.com/dragonheim/gagent.git
synced 2025-04-27 19:08:58 -07:00
fix: Replaced ioutil as it was deprecated in Golang.
This commit is contained in:
parent
82a964fc50
commit
97c8af8816
18 changed files with 105 additions and 114 deletions
|
@ -1,18 +1,18 @@
|
|||
package worker_test
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
"io"
|
||||
"log"
|
||||
"os"
|
||||
"testing"
|
||||
bytes "bytes"
|
||||
io "io"
|
||||
log "log"
|
||||
os "os"
|
||||
testing "testing"
|
||||
|
||||
"strings"
|
||||
"sync"
|
||||
strings "strings"
|
||||
sync "sync"
|
||||
|
||||
gs "github.com/dragonheim/gagent/internal/gstructs"
|
||||
|
||||
"github.com/dragonheim/gagent/internal/worker"
|
||||
worker "github.com/dragonheim/gagent/internal/worker"
|
||||
)
|
||||
|
||||
func TestWorkerMain(t *testing.T) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue