mirror of
https://github.com/Ernous/TorrServerJellyfin.git
synced 2025-12-19 21:46:11 +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)
|
|
}
|