base.go 162 B

1234567891011
  1. package seasonQuest
  2. type Base struct {
  3. EventNameList []string
  4. }
  5. func NewBase(eventNameList []string) Base {
  6. return Base{
  7. EventNameList: eventNameList,
  8. }
  9. }