2021-12-09 17:42:45 +03:00
|
|
|
// Copyright © 2021 Tokenary. All rights reserved.
|
|
|
|
|
|
|
|
import Foundation
|
|
|
|
|
|
|
|
extension URL {
|
|
|
|
|
2023-10-29 18:24:58 +03:00
|
|
|
static let x = URL(string: "https://tokenary.io/x")!
|
2021-12-09 17:42:45 +03:00
|
|
|
static let github = URL(string: "https://tokenary.io/github")!
|
|
|
|
static let email = URL(string: "mailto:support@tokenary.io")!
|
2021-12-16 15:33:40 +03:00
|
|
|
static let iosSafariGuide = URL(string: "https://tokenary.io/guide-ios")!
|
2023-10-29 18:05:29 +03:00
|
|
|
static let updateApp = URL(string: "https://lil.org/update")!
|
2021-12-12 16:25:46 +03:00
|
|
|
|
2021-12-09 17:42:45 +03:00
|
|
|
}
|