From 2f238646ed375408d1d5ec971b23203f6cff587b Mon Sep 17 00:00:00 2001 From: alex Date: Mon, 11 Mar 2024 19:21:35 +0100 Subject: [PATCH] start --- main.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/main.go b/main.go index 0f934c2..0888e3d 100644 --- a/main.go +++ b/main.go @@ -1,6 +1,8 @@ package main import ( + "fmt" + "clickandjoin.app/emailserver/mailer" "clickandjoin.app/emailserver/modules/config" "clickandjoin.app/emailserver/modules/rabbitmq" @@ -25,5 +27,6 @@ func init() { func main() { rabbitmq.Init() + fmt.Println("Email server started") gocnjhelper.LogInfo("Email server started") }