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

https://github.com/zeta611/yaksok

Yaksok is a lightweight framework that brings Promises to Swift
https://github.com/zeta611/yaksok

deferred framework futures library promises swift

Last synced: over 1 year ago
JSON representation

Yaksok is a lightweight framework that brings Promises to Swift

Awesome Lists containing this project

README

          

# Yaksok

## Installation
Support for package managers will be added.

## Documentation
Documentation will be added.

## Example
```swift
User.login(username: username, password: password)
.flatMap { user in
user.fetchFriends()
}
.done { friends in
// Do something with the user's friends
}
.catch { error in
// do something with the error
}
```

## License
Yaksok is available under the MIT license. See the LICENSE file for more info.