🚀 Launch 3.0.0+97 w/ NSE

This commit is contained in:
2025-05-31 19:16:47 +08:00
parent afe1c700eb
commit 311420e1f7
14 changed files with 601 additions and 104 deletions

View File

@ -0,0 +1,14 @@
//
// CloudFile.swift
// Runner
//
// Created by LittleSheep on 2025/5/31.
//
import Foundation
func getAttachmentUrl(for identifier: String) -> String {
let serverBaseUrl = "https://api.sn.solsynth.dev"
return identifier.starts(with: "http") ? identifier : "\(serverBaseUrl)/cgi/uc/attachments/\(identifier)"
}