mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-14 01:03:27 +01:00
18 lines
338 B
Swift
18 lines
338 B
Swift
//
|
|
// Proxy.swift
|
|
// SideStore
|
|
//
|
|
// Created by Joseph Mattiello on 11/7/22.
|
|
// Copyright © 2022 Riley Testut. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public extension Consts {
|
|
enum Proxy {
|
|
static let address = "127.0.0.1"
|
|
static let port = "51820"
|
|
static let serverURL = "\(address):\(port)"
|
|
}
|
|
}
|