2023-12-29 11:17:37 +01:00
|
|
|
//Made by Lumaa
|
|
|
|
|
|
|
|
import Foundation
|
|
|
|
|
|
|
|
public enum AppInfo {
|
2024-02-04 08:43:56 +01:00
|
|
|
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"
|
2024-01-02 18:05:59 +01:00
|
|
|
public static let website = "https://apps.lumaa.fr/app/threaded"
|
2023-12-29 11:17:37 +01:00
|
|
|
}
|