Add CI/CD configuration and API documentation

This commit is contained in:
2026-07-01 21:40:53 +08:00
commit c590135d68
4168 changed files with 740252 additions and 0 deletions
@@ -0,0 +1,27 @@
//
// Server.swift
// Server
//
// Created by zues on 12/09/21.
//
import SwiftUI
// Sample Server and data...
//struct Server: Identifiable {
//
// var id = UUID().uuidString
// var name: String
// var flag: String
//}
//var servers = [
// Server(name: "Auto Select", flag: "us"),
// Server(name: "United States", flag: "us"),
// Server(name: "India", flag: "in"),
// Server(name: "United Kingdom", flag: "uk"),
// Server(name: "France", flag: "fr"),
// Server(name: "Germany", flag: "ge"),
// Server(name: "Singapore", flag: "si"),
//]