TP-5555 | log-remove

This commit is contained in:
varnit goyal
2024-11-12 19:03:59 +05:30
parent 3161c5398f
commit 8baf8dc1b8

View File

@@ -2,16 +2,13 @@ package transport
import (
"fmt"
"log-enricher/configs"
"log-enricher/internal/dependencies"
"log-enricher/internal/transport/router"
"os"
"os/signal"
"syscall"
"time"
"log-enricher/configs"
"log-enricher/internal/dependencies"
ginzap "github.com/gin-contrib/zap"
"github.com/gin-gonic/gin"
"go.uber.org/zap"
)
@@ -33,7 +30,6 @@ func (s *Server) router() {
}
func (s *Server) Start() {
s.gin.Use(ginzap.Ginzap(s.dependencies.Logger, time.RFC3339, false))
s.router()
port := configs.GetPort()