File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ require (
16
16
github.com/spf13/pflag v1.0.5
17
17
github.com/stretchr/testify v1.9.0
18
18
github.com/uptrace/bun v1.2.3
19
+ github.com/uptrace/bun/dialect/pgdialect v1.2.3
19
20
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.55.0
20
21
go.opentelemetry.io/otel v1.30.0
21
22
go.opentelemetry.io/otel/trace v1.30.0
@@ -119,7 +120,6 @@ require (
119
120
github.com/riandyrn/otelchi v0.10.0 // indirect
120
121
github.com/rs/cors v1.11.1 // indirect
121
122
github.com/tmthrgd/go-hex v0.0.0-20190904060850-447a3041c3bc // indirect
122
- github.com/uptrace/bun/dialect/pgdialect v1.2.3 // indirect
123
123
github.com/uptrace/bun/extra/bunotel v1.2.3 // indirect
124
124
github.com/uptrace/opentelemetry-go-extra/otellogrus v0.3.2 // indirect
125
125
github.com/uptrace/opentelemetry-go-extra/otelsql v0.3.2 // indirect
Original file line number Diff line number Diff line change 1
1
package server
2
2
3
3
import (
4
+ "net/http"
5
+
4
6
"github.com/formancehq/go-libs/logging"
5
7
webhooks "github.com/formancehq/webhooks/pkg"
6
8
"github.com/formancehq/webhooks/pkg/server/apierrors"
7
9
"github.com/formancehq/webhooks/pkg/storage"
8
10
"github.com/go-chi/chi/v5"
9
11
"github.com/pkg/errors"
10
- "net/http"
11
12
)
12
13
13
14
func (h * serverHandler ) updateOneConfigHandle (w http.ResponseWriter , r * http.Request ) {
Original file line number Diff line number Diff line change @@ -3,9 +3,10 @@ package postgres
3
3
import (
4
4
"context"
5
5
"database/sql"
6
- "github.com/uptrace/bun/dialect/pgdialect"
7
6
"time"
8
7
8
+ "github.com/uptrace/bun/dialect/pgdialect"
9
+
9
10
webhooks "github.com/formancehq/webhooks/pkg"
10
11
"github.com/formancehq/webhooks/pkg/storage"
11
12
"github.com/pkg/errors"
You can’t perform that action at this time.
0 commit comments