8 lines
97 B
Go
8 lines
97 B
Go
|
package main
|
||
|
|
||
|
type platform interface {
|
||
|
name() string
|
||
|
pull() []book
|
||
|
getFiles(b book) []file
|
||
|
}
|