You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
438 B
21 lines
438 B
//
|
|
// URLs.swift
|
|
// PadelClub
|
|
//
|
|
// Created by Laurent Morvillier on 22/04/2024.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
enum URLs: String, Identifiable {
|
|
case subscriptions = "https://apple.co/2Th4vqI"
|
|
case main = "https://xlr.alwaysdata.net/"
|
|
case beachPadel = "https://beach-padel.app.fft.fr/beachja/index/"
|
|
|
|
var id: String { return self.rawValue }
|
|
|
|
var url: URL {
|
|
return URL(string: self.rawValue)!
|
|
}
|
|
|
|
}
|
|
|