mirror of
https://github.com/sudoxnym/audiobookshelf-atv.git
synced 2026-04-15 12:06:57 +00:00
21 lines
374 B
Swift
21 lines
374 B
Swift
|
|
//
|
||
|
|
// Store.swift
|
||
|
|
// App
|
||
|
|
//
|
||
|
|
// Created by Rasmus Krämer on 11.04.22.
|
||
|
|
//
|
||
|
|
|
||
|
|
import Foundation
|
||
|
|
import RealmSwift
|
||
|
|
|
||
|
|
class Store {
|
||
|
|
public static var serverConfig: ServerConnectionConfig {
|
||
|
|
get {
|
||
|
|
return Database.getServerConnectionConfig()
|
||
|
|
}
|
||
|
|
set(updated) {
|
||
|
|
Database.setServerConnectionConfig(config: updated)
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|