16 lines
258 B
Swift
16 lines
258 B
Swift
//
|
|
// APIConfig.swift
|
|
//
|
|
|
|
import Foundation
|
|
|
|
enum APIConfig {
|
|
static let baseURL = "https://api.longde.cloud/api"
|
|
|
|
static let timeout: TimeInterval = 30
|
|
|
|
static func url(_ path: String) -> URL {
|
|
URL(string: "\(baseURL)\(path)")!
|
|
}
|
|
}
|