2
0
mirror of https://github.com/tenrok/event-scheduling.git synced 2026-06-14 18:42:32 +03:00

feat: added events file

This commit is contained in:
Dipesh Dulal
2021-01-16 10:34:37 +05:45
parent 8d951b3c8d
commit 3cba4a113e
+13
View File
@@ -0,0 +1,13 @@
package customevents
import "log"
// SendEmail sends the email
func SendEmail(data interface{}) {
log.Println("📨 Sending email with data: ", data)
}
// PayBills pays the bills
func PayBills(data interface{}) {
log.Println("💲 Pay me a bill: ", data)
}