mirror of
https://github.com/Ernous/TorrServerJellyfin.git
synced 2025-12-20 05:56:10 +05:00
10 lines
195 B
Go
10 lines
195 B
Go
package settings
|
|
|
|
type TorrServerDB interface {
|
|
CloseDB()
|
|
Get(xPath, name string) []byte
|
|
Set(xPath, name string, value []byte)
|
|
List(xPath string) []string
|
|
Rem(xPath, name string)
|
|
}
|