update project name

This commit is contained in:
SowinskiBraeden committed 2023-09-26 21:00:18 -07:00
1 parent 6103b6d502
commit ecf4fabd86
14 files changed
+30 -30

No files matched your search

+5 -5
View File
@@ -5,14 +5,14 @@ import (
"io"
"net/http"
"github.com/SowinskiBraeden/SulliCartShare/api"
"github.com/SowinskiBraeden/SulliCartShare/models"
"github.com/SowinskiBraeden/DeviceBookingAPI/api"
"github.com/SowinskiBraeden/DeviceBookingAPI/models"
"github.com/go-playground/validator/v10"
"github.com/gorilla/mux"
"go.uber.org/zap"
"github.com/SowinskiBraeden/SulliCartShare/config"
"github.com/SowinskiBraeden/SulliCartShare/databases"
"github.com/SowinskiBraeden/DeviceBookingAPI/config"
"github.com/SowinskiBraeden/DeviceBookingAPI/databases"
)
var validate = validator.New()
@@ -73,7 +73,7 @@ func (a *App) Initialize() error {
zap.S().With(err).Error("failed to connect to database")
return err
}
zap.S().Info("SulliCartShare has connected to the database")
zap.S().Info("DeviceBookingAPI has connected to the database")
// initialize api router
a.initializeRoutes()