Added basic player methods

This commit is contained in:
Rasmus Krämer
2022-04-14 14:39:09 +02:00
parent 6c65c8a33e
commit 7a9f6ff2ca
7 changed files with 198 additions and 2 deletions
+13
View File
@@ -0,0 +1,13 @@
//
// PlayerEvents.swift
// App
//
// Created by Rasmus Krämer on 14.04.22.
//
import Foundation
enum PlayerEvents: String {
case update = "com.audiobookshelf.app.player.update"
case closed = "com.audiobookshelf.app.player.closed"
}