feat: Notification service qo'shildi va RabbitMQ integratsiya qilindi

This commit is contained in:
A'zamov Samandar
2025-04-20 16:15:04 +05:00
commit 937dda4bdd
11 changed files with 312 additions and 0 deletions

10
cmd/main.go Normal file
View File

@@ -0,0 +1,10 @@
package main
import (
"github.com/JscorpTech/notification/internal/consumer"
)
func main() {
notification := consumer.NewNotificationConsumer()
notification.Start()
}