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

13
internal/config/config.go Normal file
View File

@@ -0,0 +1,13 @@
package config
import (
"os"
)
func GetEnv(key, fallback string) string {
val := os.Getenv(key)
if val == "" {
return fallback
}
return val
}