gadl/platform.go

8 lines
97 B
Go
Raw Permalink Normal View History

2023-12-24 22:10:01 +09:00
package main
type platform interface {
name() string
pull() []book
getFiles(b book) []file
}