Bubble/Threaded/Data/AppInfo.swift

16 lines
471 B
Swift
Raw Normal View History

2023-12-29 11:17:37 +01:00
//Made by Lumaa
import Foundation
public enum AppInfo {
public static let scopes = "read write follow push"
2024-02-11 18:43:38 +01:00
public static let scheme = "threadedapp://"
2023-12-29 11:17:37 +01:00
public static let clientName = "ThreadedApp"
public static let defaultServer = "mastodon.social"
public static let website = "https://apps.lumaa.fr/app/threaded"
2023-12-29 11:17:37 +01:00
}
extension AppInfo {
static var appVersion = Bundle.main.infoDictionary?["CFBundleShortVersionString"] as? String ?? "Unknown"
}