Contains the Concourse pipeline definition for building a line-server container
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
package backends
import ( "io" "net/http" )
type ReadSeekCloser interface { io.Reader io.Closer io.Seeker io.ReaderAt }
type StorageBackend interface { Delete(key string) error Exists(key string) (bool, error) Get(key string) ([]byte, error) Put(key string, r io.Reader) (int64, error) Open(key string) (ReadSeekCloser, error) ServeFile(key string, w http.ResponseWriter, r *http.Request) Size(key string) (int64, error) }
type MetaStorageBackend interface { StorageBackend List() ([]string, error) }
|