mirror of
https://github.com/Ernous/TorrServerJellyfin.git
synced 2025-12-19 21:46:11 +05:00
13 lines
189 B
Go
13 lines
189 B
Go
package storage
|
|
|
|
import (
|
|
"github.com/anacrolix/torrent/metainfo"
|
|
"github.com/anacrolix/torrent/storage"
|
|
)
|
|
|
|
type Storage interface {
|
|
storage.ClientImpl
|
|
|
|
CloseHash(hash metainfo.Hash)
|
|
}
|