mirror of
https://github.com/lumaa-dev/BubbleApp.git
synced 2025-01-03 20:41:01 +01:00
16 lines
471 B
Swift
16 lines
471 B
Swift
//Made by Lumaa
|
|
|
|
import Foundation
|
|
|
|
public enum AppInfo {
|
|
public static let scopes = "read write follow push"
|
|
public static let scheme = "threadedapp://"
|
|
public static let clientName = "ThreadedApp"
|
|
public static let defaultServer = "mastodon.social"
|
|
public static let website = "https://apps.lumaa.fr/app/threaded"
|
|
}
|
|
|
|
extension AppInfo {
|
|
static var appVersion = Bundle.main.infoDictionary?["CFBundleShortVersionString"] as? String ?? "Unknown"
|
|
}
|