Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion transcoder/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ require (
github.com/exaring/otelpgx v0.10.0
github.com/golang-migrate/migrate/v4 v4.19.1
github.com/jackc/pgx/v5 v5.8.0
github.com/labstack/echo/v4 v4.15.1
github.com/labstack/echo/v5 v5.0.4
github.com/swaggo/echo-swagger v1.4.1
github.com/swaggo/swag v1.16.6
gitlab.com/opennota/screengen v1.0.2
Expand Down Expand Up @@ -61,6 +61,7 @@ require (
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
github.com/jackc/puddle/v2 v2.2.2 // indirect
github.com/labstack/echo/v4 v4.15.1 // indirect
github.com/swaggo/files/v2 v2.0.2 // indirect
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.41.0 // indirect
Expand Down
2 changes: 2 additions & 0 deletions transcoder/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,8 @@ github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=
github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
github.com/labstack/echo/v4 v4.15.1 h1:S9keusg26gZpjMmPqB5hOEvNKnmd1lNmcHrbbH2lnFs=
github.com/labstack/echo/v4 v4.15.1/go.mod h1:xmw1clThob0BSVRX1CRQkGQ/vjwcpOMjQZSZa9fKA/c=
github.com/labstack/echo/v5 v5.0.4 h1:ll3I/O8BifjMztj9dD1vx/peZQv8cR2CTUdQK6QxGGc=
github.com/labstack/echo/v5 v5.0.4/go.mod h1:SyvlSdObGjRXeQfCCXW/sybkZdOOQZBmpKF0bvALaeo=
github.com/labstack/gommon v0.4.2 h1:F8qTUNXgG1+6WQmqoUWnz8WiEU60mXVVw0P4ht1WRA0=
github.com/labstack/gommon v0.4.2/go.mod h1:QlUFxVM+SNXhDL/Z7YhocGIBYOiwB0mXm1+1bAPHPyU=
github.com/lib/pq v1.10.9 h1:YXG7RB+JIjhP29X+OtkiDnYaXQwpS4JEWq7dtCCRUEw=
Expand Down
4 changes: 2 additions & 2 deletions transcoder/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ import (

"github.com/MicahParks/keyfunc/v3"

"github.com/labstack/echo/v4"
"github.com/labstack/echo/v4/middleware"
"github.com/labstack/echo/v5"
"github.com/labstack/echo/v5/middleware"
)

func ErrorHandler(err error, c echo.Context) {
Expand Down
2 changes: 1 addition & 1 deletion transcoder/otel.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"os"
"strings"

"github.com/labstack/echo/v4"
"github.com/labstack/echo/v5"
"go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho"
"go.opentelemetry.io/otel"
"go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc"
Expand Down
2 changes: 1 addition & 1 deletion transcoder/src/api/health.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package api

import (
"github.com/jackc/pgx/v5/pgxpool"
"github.com/labstack/echo/v4"
"github.com/labstack/echo/v5"
)

type health struct {
Expand Down
2 changes: 1 addition & 1 deletion transcoder/src/api/metadata.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"path/filepath"

"github.com/asticode/go-astisub"
"github.com/labstack/echo/v4"
"github.com/labstack/echo/v5"
"github.com/zoriya/kyoo/transcoder/src"
"github.com/zoriya/kyoo/transcoder/src/utils"
)
Expand Down
2 changes: 1 addition & 1 deletion transcoder/src/api/path.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"path/filepath"
"strings"

"github.com/labstack/echo/v4"
"github.com/labstack/echo/v5"
"github.com/zoriya/kyoo/transcoder/src"
)

Expand Down
2 changes: 1 addition & 1 deletion transcoder/src/api/pprof.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
runtimepprof "runtime/pprof"
"strconv"

"github.com/labstack/echo/v4"
"github.com/labstack/echo/v5"
)

// This is similar to https://github.com/sevennt/echo-pprof/blob/master/pprof.go.
Expand Down
2 changes: 1 addition & 1 deletion transcoder/src/api/streams.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"net/http"
"strconv"

"github.com/labstack/echo/v4"
"github.com/labstack/echo/v5"
"github.com/zoriya/kyoo/transcoder/src"
)

Expand Down
2 changes: 1 addition & 1 deletion transcoder/src/quality.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package src
import (
"net/http"

"github.com/labstack/echo/v4"
"github.com/labstack/echo/v5"
)

type Quality string
Expand Down
Loading