Files
SideStore/SideStoreApp/Sources/SideStoreAppKit/Consts/Consts+Proxy.swift

18 lines
342 B
Swift
Raw Normal View History

2023-03-01 19:09:33 -05:00
//
// 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)"
}
}