Files
Poll-system/app/internal/models/email_updates.go

11 lines
140 B
Go
Raw Normal View History

package models
import (
"fmt"
)
func EmailMessage(msg string){
fmt.Print("Message is not sent (func not implmented) %s", msg)
return
}