Skip to content

Commit

Permalink
deps: Replace all ai-worker deps with ai/worker local folder
Browse files Browse the repository at this point in the history
  • Loading branch information
victorges committed Jan 9, 2025
1 parent 93348e8 commit aa2ac5c
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion ai/file_worker.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"errors"
"os"

"github.com/livepeer/ai-worker/worker"
"github.com/livepeer/go-livepeer/ai/worker"
)

type FileWorker struct {
Expand Down
2 changes: 1 addition & 1 deletion cmd/livepeer/starter/starter.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import (
"github.com/ethereum/go-ethereum/params"
"github.com/ethereum/go-ethereum/rpc"
"github.com/golang/glog"
"github.com/livepeer/ai-worker/worker"
"github.com/livepeer/go-livepeer/ai/worker"
"github.com/livepeer/go-livepeer/build"
"github.com/livepeer/go-livepeer/common"
"github.com/livepeer/go-livepeer/core"
Expand Down
2 changes: 1 addition & 1 deletion core/ai.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"strings"

"github.com/golang/glog"
"github.com/livepeer/ai-worker/worker"
"github.com/livepeer/go-livepeer/ai/worker"
)

var errPipelineNotAvailable = errors.New("pipeline not available")
Expand Down
2 changes: 1 addition & 1 deletion core/ai_worker.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (

"github.com/ethereum/go-ethereum/crypto"
"github.com/golang/glog"
"github.com/livepeer/ai-worker/worker"
"github.com/livepeer/go-livepeer/ai/worker"
"github.com/livepeer/go-livepeer/clog"
"github.com/livepeer/go-livepeer/common"
"github.com/livepeer/go-livepeer/monitor"
Expand Down
2 changes: 1 addition & 1 deletion server/ai_http.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (
ethcommon "github.com/ethereum/go-ethereum/common"
"github.com/getkin/kin-openapi/openapi3filter"
"github.com/golang/glog"
"github.com/livepeer/ai-worker/worker"
"github.com/livepeer/go-livepeer/ai/worker"
"github.com/livepeer/go-livepeer/clog"
"github.com/livepeer/go-livepeer/common"
"github.com/livepeer/go-livepeer/core"
Expand Down
2 changes: 1 addition & 1 deletion server/ai_mediaserver.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
"github.com/livepeer/go-livepeer/monitor"

"github.com/getkin/kin-openapi/openapi3filter"
"github.com/livepeer/ai-worker/worker"
"github.com/livepeer/go-livepeer/ai/worker"
"github.com/livepeer/go-livepeer/clog"
"github.com/livepeer/go-livepeer/common"
"github.com/livepeer/go-livepeer/core"
Expand Down
2 changes: 1 addition & 1 deletion server/ai_process.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
"strings"
"time"

"github.com/livepeer/ai-worker/worker"
"github.com/livepeer/go-livepeer/ai/worker"
"github.com/livepeer/go-livepeer/clog"
"github.com/livepeer/go-livepeer/common"
"github.com/livepeer/go-livepeer/core"
Expand Down
2 changes: 1 addition & 1 deletion server/ai_worker.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (

"github.com/cenkalti/backoff"
"github.com/golang/glog"
"github.com/livepeer/ai-worker/worker"
"github.com/livepeer/go-livepeer/ai/worker"
"github.com/livepeer/go-livepeer/clog"
"github.com/livepeer/go-livepeer/common"
"github.com/livepeer/go-livepeer/core"
Expand Down
2 changes: 1 addition & 1 deletion server/rpc.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
"google.golang.org/grpc"
"google.golang.org/grpc/credentials"

"github.com/livepeer/ai-worker/worker"
"github.com/livepeer/go-livepeer/ai/worker"
"github.com/livepeer/go-livepeer/clog"
"github.com/livepeer/go-livepeer/common"
"github.com/livepeer/go-livepeer/core"
Expand Down

0 comments on commit aa2ac5c

Please sign in to comment.