Goff/utils/types.go
Dustin Pianalto 4db28f5c0b
Some checks are pending
CI / build (push) Waiting to run
Add sar and ping role when posting puzzle
2020-09-02 01:49:29 -08:00

14 lines
229 B
Go

package utils
import "database/sql"
type Guild struct {
ID string
WelcomeMessage string
GoodbyeMessage string
LoggingChannel string
WelcomeChannel string
PuzzleChannel string
PuzzleRole sql.NullString
}