18 lines
268 B
Swift
18 lines
268 B
Swift
//
|
|
// constants.swift
|
|
// nirvana-ios
|
|
//
|
|
// Created by Arjun Patel on 12/11/21.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
final class NirvanaConstants {
|
|
static let landingPageUrl: String = "https://usenirvana.com"
|
|
}
|
|
|
|
enum NavigationViews {
|
|
case welcomeView
|
|
case homeView
|
|
}
|