Skip to content

Commit

Permalink
chore(actions): fix Makefile to pass lint action
Browse files Browse the repository at this point in the history
  • Loading branch information
breadrock1 committed May 30, 2024
1 parent 773ecae commit 0a04bcd
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions internal/app/server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ import (

"github.com/labstack/echo/v4"
"github.com/labstack/echo/v4/middleware"
//echoSwagger "github.com/swaggo/echo-swagger"
//_ "image-resize-service/docs"
"image-resize-service/internal/app/cache"
"image-resize-service/internal/app/resizer"
"image-resize-service/internal/app/storage"
Expand Down Expand Up @@ -53,8 +51,6 @@ func (s *Service) InitEndpoints() {
s.e.GET("/hello/", s.Hello)
s.e.GET("/tests/tests.jpg", s.TestDownload)
s.e.GET("/fill/:height/:width/:image", s.Fill, s.LoadFromCache, s.StoreToCache)

//s.e.GET("/swagger/*", echoSwagger.WrapHandler)
}

func (s *Service) Start(_ context.Context) error {
Expand Down

0 comments on commit 0a04bcd

Please sign in to comment.