mirror of
https://github.com/blacktop/ipsw.git
synced 2026-06-07 12:27:36 +00:00
32 lines
576 B
Go
32 lines
576 B
Go
package store
|
|
|
|
type Local struct {
|
|
Folder string
|
|
}
|
|
|
|
func NewLocal(folder string) Store {
|
|
return Local{
|
|
Folder: folder,
|
|
}
|
|
}
|
|
|
|
func (l Local) Connect() error {
|
|
panic("not implemented") // TODO: Implement
|
|
}
|
|
|
|
func (l Local) Put(key []byte, value []byte) error {
|
|
panic("not implemented") // TODO: Implement
|
|
}
|
|
|
|
func (l Local) Get(key []byte) ([]byte, error) {
|
|
panic("not implemented") // TODO: Implement
|
|
}
|
|
|
|
func (l Local) Delete(key []byte) error {
|
|
panic("not implemented") // TODO: Implement
|
|
}
|
|
|
|
func (l Local) Close() error {
|
|
panic("not implemented") // TODO: Implement
|
|
}
|