debloat: converted xcode groups to xcode folder + removed unused files

This commit is contained in:
mahee96
2026-02-22 16:17:01 +05:30
parent eed895f145
commit 747a9c7b5a
12 changed files with 126 additions and 2051 deletions

View File

@@ -0,0 +1,17 @@
//
// AppConstants.swift
// SideStore
//
// Created by Joseph Mattiello on 11/7/22.
// Copyright © 2022 Riley Testut. All rights reserved.
//
import Foundation
public enum AppConstants {
enum Proxy {
static let address = "127.0.0.1"
static let port = "51820"
static let serverURL = "\(address):\(port)"
}
}