wangdl 697220de00 fix: APIConfig baseURL longde.cloud → api.longde.cloud
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-06-09 20:39:57 +08:00

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)")!
}
}