list.go 94 B

1234567
  1. package datastructure
  2. type List interface {
  3. SetGenres(map[int]string)
  4. GetType() ItemType
  5. }