package space type Space interface { ID() string Name() string Desc() string } type SpaceList interface { List() []Space More() bool Before() int After() int }