mirror of
https://github.com/WiiLink24/wfc-server.git
synced 2026-05-09 04:23:26 -05:00
18 lines
224 B
Go
18 lines
224 B
Go
package gpcm
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
var motdFilepath = "./motd.txt"
|
|
|
|
func GetMessageOfTheDay() (string, error) {
|
|
contents, err := os.ReadFile(motdFilepath)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
return string(contents), nil
|
|
}
|
|
|