Skip to content

Commit

Permalink
fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
efectn committed Dec 24, 2023
1 parent e987a8e commit c33626b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
4 changes: 3 additions & 1 deletion middleware/healthcheck/config.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
package healthcheck

import "github.com/gofiber/fiber/v2"
import (
"github.com/gofiber/fiber/v2"
)

// Config is the config struct for the healthcheck middleware
type Config struct {
Expand Down
7 changes: 4 additions & 3 deletions middleware/healthcheck/healthcheck_test.go
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
package healthcheck

import (
"github.com/gofiber/fiber/v2"
"github.com/gofiber/fiber/v2/utils"
"github.com/valyala/fasthttp"
"net/http/httptest"
"testing"
"time"

"github.com/gofiber/fiber/v2"
"github.com/gofiber/fiber/v2/utils"
"github.com/valyala/fasthttp"
)

func Test_HealthCheck(t *testing.T) {
Expand Down

0 comments on commit c33626b

Please sign in to comment.