Skip to content
forked from mdiep/Tentacle

A Swift framework for the GitHub API

License

Notifications You must be signed in to change notification settings

Palleas/Tentacle

 
 

Repository files navigation

Tentacle MIT license

A Swift framework for the GitHub API

let client = Client(.dotCom, token: "")
client
    .release(forTag: "tag-name", in: Repository(owner: "ReactiveCocoa", name: "ReactiveCocoa"))
    .startWithResult { result in
        switch result {
        case let .success(response, release):
            print("Downloaded release: \(release)")
        case let .failure(error):
            print("An error occured: \(error)")
        }
    }

Tentacle is built with ReactiveSwift.

License

Tentacle is available under the MIT License

About

A Swift framework for the GitHub API

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Languages

  • Swift 99.1%
  • Other 0.9%