gadl/platform.go
2023-12-24 22:10:01 +09:00

7 lines
97 B
Go

package main
type platform interface {
name() string
pull() []book
getFiles(b book) []file
}