Fix nullability of columns

This commit is contained in:
Dustin Pianalto
2021-01-23 20:10:48 -09:00
parent 106333c26b
commit 454cced2a7
9 changed files with 155 additions and 36 deletions
+4 -4
View File
@@ -6,11 +6,11 @@ type Server struct {
IPAddr string
Port int
Password string
AlertsChannel Channel
AlertsChannel *Channel
Guild Guild
InfoChannel Channel
InfoMessage Message
SettingsMessage Message
InfoChannel *Channel
InfoMessage *Message
SettingsMessage *Message
}
type ServerService interface {