create-github-app-token

Crates.iocreate-github-app-token
lib.rscreate-github-app-token
version2.0.1
sourcesrc
created_at2021-12-12 05:47:53.969081
updated_at2022-10-22 15:03:36.742634
descriptionThis library makes easier to publish GitHub App token.
homepage
repositoryhttps://github.com/Lucky3028/create-github-app-token
max_upload_size
id496446
size15,142
Lucky (Lucky3028)

documentation

https://docs.rs/create-github-app-token

README

create-github-app-token

crates.io docs.rs License

This library makes easier to publish GitHub App token.

Usage

use create_github_app_token::{errors::Error, publish_token, Token};

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

  Ok(token)
}
Commit count: 99

cargo fmt