[API] Fix typo in package name (#92)

Fix typo in package name
This commit is contained in:
agodnic 2023-01-26 11:00:02 -03:00 committed by GitHub
parent 0a382a0a5c
commit b6266b0776
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 12 additions and 12 deletions

View File

@ -1,4 +1,4 @@
package infraestructure
package infrastructure
import "github.com/gofiber/fiber/v2"

View File

@ -1,4 +1,4 @@
package infraestructure
package infrastructure
// MongoStatus represent a mongo server status.
type MongoStatus struct {

View File

@ -1,4 +1,4 @@
package infraestructure
package infrastructure
import (
"context"
@ -19,7 +19,7 @@ type Repository struct {
// NewRepository create a new Repository.
func NewRepository(db *mongo.Database, logger *zap.Logger) *Repository {
return &Repository{db: db,
logger: logger.With(zap.String("module", "InfraestructureRepository")),
logger: logger.With(zap.String("module", "InfrastructureRepository")),
}
}

View File

@ -1,4 +1,4 @@
package infraestructure
package infrastructure
import (
"context"
@ -14,7 +14,7 @@ type Service struct {
// NewService create a new governor.Service.
func NewService(dao *Repository, logger *zap.Logger) *Service {
return &Service{repo: dao, logger: logger.With(zap.String("module", "Infraestructureervice"))}
return &Service{repo: dao, logger: logger.With(zap.String("module", "InfrastructureService"))}
}
// CheckMongoServerStatus

View File

@ -22,7 +22,7 @@ import (
"github.com/wormhole-foundation/wormhole-explorer/api/handlers/governor"
"github.com/wormhole-foundation/wormhole-explorer/api/handlers/guardian"
"github.com/wormhole-foundation/wormhole-explorer/api/handlers/heartbeats"
infraestructure "github.com/wormhole-foundation/wormhole-explorer/api/handlers/infrastructure"
"github.com/wormhole-foundation/wormhole-explorer/api/handlers/infrastructure"
"github.com/wormhole-foundation/wormhole-explorer/api/handlers/observations"
"github.com/wormhole-foundation/wormhole-explorer/api/handlers/vaa"
wormscanCache "github.com/wormhole-foundation/wormhole-explorer/api/internal/cache"
@ -95,14 +95,14 @@ func main() {
vaaRepo := vaa.NewRepository(db, rootLogger)
obsRepo := observations.NewRepository(db, rootLogger)
governorRepo := governor.NewRepository(db, rootLogger)
infraestructureRepo := infraestructure.NewRepository(db, rootLogger)
infrastructureRepo := infrastructure.NewRepository(db, rootLogger)
heartbeatsRepo := heartbeats.NewRepository(db, rootLogger)
// Setup services
vaaService := vaa.NewService(vaaRepo, cacheGetFunc, rootLogger)
obsService := observations.NewService(obsRepo, rootLogger)
governorService := governor.NewService(governorRepo, rootLogger)
infraestructureService := infraestructure.NewService(infraestructureRepo, rootLogger)
infrastructureService := infrastructure.NewService(infrastructureRepo, rootLogger)
heartbeatsService := heartbeats.NewService(heartbeatsRepo, rootLogger)
// Setup controllers
@ -110,7 +110,7 @@ func main() {
vaaCtrl := vaa.NewController(vaaService, rootLogger)
observationsCtrl := observations.NewController(obsService, rootLogger)
governorCtrl := governor.NewController(governorService, rootLogger)
infraestructureCtrl := infraestructure.NewController(infraestructureService)
infrastructureCtrl := infrastructure.NewController(infrastructureService)
guardianCtrl := guardian.NewController(rootLogger)
heartbeatsCtrl := heartbeats.NewController(heartbeatsService, rootLogger)
@ -134,8 +134,8 @@ func main() {
api.Use(cors.New()) // TODO CORS restrictions?
api.Use(middleware.ExtractPagination)
api.Get("/health", infraestructureCtrl.HealthCheck)
api.Get("/ready", infraestructureCtrl.ReadyCheck)
api.Get("/health", infrastructureCtrl.HealthCheck)
api.Get("/ready", infrastructureCtrl.ReadyCheck)
// vaas resource
vaas := api.Group("/vaas")