mirror of
https://github.com/danbee/persephone
synced 2025-03-04 08:39:11 +00:00
19 lines
495 B
Swift
19 lines
495 B
Swift
//
|
|
// App.swift
|
|
// Persephone
|
|
//
|
|
// Created by Daniel Barber on 2019/4/30.
|
|
// Copyright © 2019 Dan Barber. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
import ReSwift
|
|
|
|
struct App {
|
|
static let store = Store<AppState>(reducer: appReducer, state: nil)
|
|
static let trackTimer = TrackTimer()
|
|
static let userNotificationsController = UserNotificationsController()
|
|
static let mpdServerController = MPDServerController()
|
|
static let mpdClient = MPDClient(withDelegate: mpdServerController)
|
|
}
|