From 81aad602110c6fc7a33f3e4420bf3d84ea091b5c Mon Sep 17 00:00:00 2001 From: Tue Date: Wed, 16 Nov 2022 14:13:56 +0700 Subject: [PATCH] build email --- .idea/.name | 1 - .idea/{email-modules.iml => email.iml} | 0 .idea/modules.xml | 2 +- email.go | 4 ++-- payload.go | 2 +- 5 files changed, 4 insertions(+), 5 deletions(-) delete mode 100644 .idea/.name rename .idea/{email-modules.iml => email.iml} (100%) diff --git a/.idea/.name b/.idea/.name deleted file mode 100644 index 56c2d58..0000000 --- a/.idea/.name +++ /dev/null @@ -1 +0,0 @@ -email-modules \ No newline at end of file diff --git a/.idea/email-modules.iml b/.idea/email.iml similarity index 100% rename from .idea/email-modules.iml rename to .idea/email.iml diff --git a/.idea/modules.xml b/.idea/modules.xml index be0d705..0e3e62f 100644 --- a/.idea/modules.xml +++ b/.idea/modules.xml @@ -2,7 +2,7 @@ - + \ No newline at end of file diff --git a/email.go b/email.go index 2db1530..e2814c8 100644 --- a/email.go +++ b/email.go @@ -1,4 +1,4 @@ -package email_modules +package email import ( "encoding/json" @@ -8,7 +8,7 @@ import ( ) func getPrefixEmailService(subject string) string { - return fmt.Sprintf("selly.email-modules.%s", subject) + return fmt.Sprintf("selly.email.%s", subject) } const ( diff --git a/payload.go b/payload.go index 9ce55e7..5066951 100644 --- a/payload.go +++ b/payload.go @@ -1,4 +1,4 @@ -package email_modules +package email import ( "git.selly.red/Selly-Modules/natsio"