dcbot/internal/domain/player.go
Dawid Wysokiński c7efe7a240
All checks were successful
continuous-integration/drone/push Build is passing
refactor: split domain/tw.go into multiple files
2023-07-09 08:06:53 +02:00

14 lines
189 B
Go

package domain
type PlayerMeta struct {
ID int64
Name string
ProfileURL string
Tribe NullTribeMeta
}
type NullPlayerMeta struct {
Player PlayerMeta
Valid bool
}