package storage import "io" //Storage capacity type Storage interface { Store(content io.Reader) }