├── .github ├── CODEOWNERS ├── FUNDING.yml ├── auto_assign.yml ├── issue_template.md ├── stale.yml └── workflows │ ├── rebase.yml │ ├── swiftlint.yml │ └── test.yml ├── .gitignore ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── xcshareddata │ ├── IDEWorkspaceChecks.plist │ └── WorkspaceSettings.xcsettings ├── CMakeLists.txt ├── Package.swift ├── README.md ├── Sources └── SideKit │ ├── Errors │ ├── ALTServerConnectionError+NSError.swift │ ├── ALTServerConnectionError.swift │ ├── ALTServerError+NSError.swift │ └── ALTServerError.swift │ ├── Extensions │ ├── ALTServerError+Conveniences.swift │ └── Result+Conveniences.swift │ ├── Server │ ├── Connection.swift │ ├── NetworkConnection.swift │ ├── Server.swift │ ├── ServerConnection.swift │ ├── ServerManager.swift │ └── ServerProtocol.swift │ └── Types │ └── CodableServerError.swift └── Tests └── SideKitTests └── SideKitTests.swift /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/SideKit/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/SideKit/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/auto_assign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/SideKit/HEAD/.github/auto_assign.yml -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/SideKit/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/SideKit/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/rebase.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/SideKit/HEAD/.github/workflows/rebase.yml -------------------------------------------------------------------------------- /.github/workflows/swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/SideKit/HEAD/.github/workflows/swiftlint.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/SideKit/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/SideKit/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/SideKit/HEAD/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/SideKit/HEAD/.swiftpm/xcode/package.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/SideKit/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/SideKit/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/SideKit/HEAD/README.md -------------------------------------------------------------------------------- /Sources/SideKit/Errors/ALTServerConnectionError+NSError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/SideKit/HEAD/Sources/SideKit/Errors/ALTServerConnectionError+NSError.swift -------------------------------------------------------------------------------- /Sources/SideKit/Errors/ALTServerConnectionError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/SideKit/HEAD/Sources/SideKit/Errors/ALTServerConnectionError.swift -------------------------------------------------------------------------------- /Sources/SideKit/Errors/ALTServerError+NSError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/SideKit/HEAD/Sources/SideKit/Errors/ALTServerError+NSError.swift -------------------------------------------------------------------------------- /Sources/SideKit/Errors/ALTServerError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/SideKit/HEAD/Sources/SideKit/Errors/ALTServerError.swift -------------------------------------------------------------------------------- /Sources/SideKit/Extensions/ALTServerError+Conveniences.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/SideKit/HEAD/Sources/SideKit/Extensions/ALTServerError+Conveniences.swift -------------------------------------------------------------------------------- /Sources/SideKit/Extensions/Result+Conveniences.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/SideKit/HEAD/Sources/SideKit/Extensions/Result+Conveniences.swift -------------------------------------------------------------------------------- /Sources/SideKit/Server/Connection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/SideKit/HEAD/Sources/SideKit/Server/Connection.swift -------------------------------------------------------------------------------- /Sources/SideKit/Server/NetworkConnection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/SideKit/HEAD/Sources/SideKit/Server/NetworkConnection.swift -------------------------------------------------------------------------------- /Sources/SideKit/Server/Server.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/SideKit/HEAD/Sources/SideKit/Server/Server.swift -------------------------------------------------------------------------------- /Sources/SideKit/Server/ServerConnection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/SideKit/HEAD/Sources/SideKit/Server/ServerConnection.swift -------------------------------------------------------------------------------- /Sources/SideKit/Server/ServerManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/SideKit/HEAD/Sources/SideKit/Server/ServerManager.swift -------------------------------------------------------------------------------- /Sources/SideKit/Server/ServerProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/SideKit/HEAD/Sources/SideKit/Server/ServerProtocol.swift -------------------------------------------------------------------------------- /Sources/SideKit/Types/CodableServerError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/SideKit/HEAD/Sources/SideKit/Types/CodableServerError.swift -------------------------------------------------------------------------------- /Tests/SideKitTests/SideKitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/SideKit/HEAD/Tests/SideKitTests/SideKitTests.swift --------------------------------------------------------------------------------