Skip to content

Commit

Permalink
fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
MakMuftic committed Mar 13, 2024
1 parent bab8413 commit ac07bc2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion internal/rpcgateway/rpcgateway.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@ package rpcgateway
import (
"context"
"fmt"
"github.com/sygmaprotocol/rpc-gateway/internal/util"
"log/slog"
"os"

"github.com/sygmaprotocol/rpc-gateway/internal/util"

"github.com/carlmjohnson/flowmatic"
"github.com/go-chi/chi/v5"
"github.com/pkg/errors"
Expand Down
7 changes: 4 additions & 3 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@ package main
import (
"context"
"fmt"
"github.com/go-chi/chi/v5"
"github.com/go-chi/chi/v5/middleware"
"github.com/go-chi/httplog/v2"
"log/slog"
"net/http"
"os"
Expand All @@ -14,6 +11,10 @@ import (
"syscall"
"time"

"github.com/go-chi/chi/v5"
"github.com/go-chi/chi/v5/middleware"
"github.com/go-chi/httplog/v2"

"github.com/sygmaprotocol/rpc-gateway/internal/metrics"
"github.com/sygmaprotocol/rpc-gateway/internal/util"

Expand Down

0 comments on commit ac07bc2

Please sign in to comment.