this push will conclude the majority of pulls. this repos will now, not be actively be managed or any further code pushes will not be frequent.
11 lines
140 B
Go
11 lines
140 B
Go
package models
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func EmailMessage(msg string){
|
|
fmt.Print("Message is not sent (func not implmented) %s", msg)
|
|
return
|
|
}
|