Files
SideStore/SideStoreApp/Sources/SideUIShared/Consts/Consts+Proxy.swift
Joseph Mattello c4c2d17ffc snapshot
Signed-off-by: Joseph Mattello <mail@joemattiello.com>
2023-04-02 02:28:12 -04:00

18 lines
342 B
Swift

//
// Proxy.swift
// SideStore
//
// Created by Joseph Mattiello on 11/7/22.
// Copyright © 2022 Joseph Mattiello. All rights reserved.
//
import Foundation
public extension Consts {
enum Proxy {
public static let address = "127.0.0.1"
public static let port = "51820"
public static let serverURL = "\(address):\(port)"
}
}