An open API service indexing awesome lists of open source software.

https://github.com/dankinsoid/swift-belurk-api

Belurk API in Swift
https://github.com/dankinsoid/swift-belurk-api

api api-client belurk client swift

Last synced: 10 months ago
JSON representation

Belurk API in Swift

Awesome Lists containing this project

README

          

# BelurkAPI
This package provides a Swift API for the [Belurk](https://belurk.ru)

## Example

```swift
let api = BelurkAPI(token: "yourToken")
let proxies = try await api.proxy.getAll().collect()
```
## Usage


## Installation

1. [Swift Package Manager](https://github.com/apple/swift-package-manager)

Create a `Package.swift` file.
```swift
// swift-tools-version:5.9
import PackageDescription

let package = Package(
name: "SomeProject",
dependencies: [
.package(url: "https://github.com/dankinsoid/BelurkAPI.git", from: "1.0.1")
],
targets: [
.target(name: "SomeProject", dependencies: ["BelurkAPI"])
]
)
```
```ruby
$ swift build
```

## Author

dankinsoid, voidilov@gmail.com

## License

BelurkAPI is available under the MIT license. See the LICENSE file for more info.