mirror of
https://github.com/tenrok/event-scheduling.git
synced 2026-06-23 20:40:39 +03:00
feat: added events file
This commit is contained in:
@@ -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)
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user