15 lines
253 B
Swift
15 lines
253 B
Swift
//
|
|
// AppConstants.swift
|
|
// PureMac
|
|
//
|
|
// Created by Theo Sementa on 12/04/2026.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct AppConstants {
|
|
|
|
static let appVersion: String = Bundle.main.infoDictionary?["CFBundleShortVersionString"] as? String ?? "0"
|
|
|
|
}
|