create-github-app-token

crates.io docs.rs License

This library makes easier to publish GitHub App token.

Usage

```rust use creategithubapptoken::{errors::Error, publishtoken, Token};

async fn fetcher() -> std::result::Result { let token = publish_token(123456, "/home/github/key.pem", "github").await?;

Ok(token) } ```