weather/internal/storage/storage.go

9 lines
102 B
Go

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