mirror of
https://github.com/WiiLink24/wfc-server.git
synced 2026-04-24 15:37:58 -05:00
17 lines
223 B
Go
17 lines
223 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
|
|
}
|