Upstream sync

This commit is contained in:
Senad Uka
2023-10-24 10:24:20 +02:00
parent fd880aeaa2
commit 6892c56c1e

View File

@@ -63,7 +63,6 @@ func main() {
// Initialize channels
// messagingChannel := make(chan string)
erpChannel := make(chan string)
contractChannel := make(chan string)
// Start services and pass the respective channels
notificationCh := make(chan models.Notification, 100)
@@ -76,7 +75,6 @@ func main() {
// Sending messages via channels
// messagingChannel <- "Send an email"
erpChannel <- "Update ERP record"
contractChannel <- "Update contract info"
// Initialize Gin
r := gin.Default()