weather/internal/storage/storage.go

9 lines
102 B
Go
Raw Normal View History

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