dcbot/internal/domain/domain.go
Dawid Wysokiński 77c52c117e
All checks were successful
continuous-integration/drone/push Build is passing
feat: enable/disable notifications of internal/barbarian conquers (#31)
Reviewed-on: #31
2022-10-28 11:59:20 +00:00

12 lines
197 B
Go

package domain
type NullString struct {
String string
Valid bool // Valid is true if String is not NULL
}
type NullBool struct {
Bool bool
Valid bool // Valid is true if Bool is not NULL
}