Hayato Tsukagoshi

Results 5 comments of Hayato Tsukagoshi

react-helmet@v6 will break gatsby-plugin-react-helmet ![](https://media0.giphy.com/media/p3KYtcJD7x7JS/giphy.gif)

lighthouse CIは導入した、actionsでJestが走るといいと思う

## example before ```rust let client = TwitterClient::new() ``` after ```rust let api = TwitterAPIClient::new() ```

## Now ```rust let api = kuon::TwitterAPI::new(...).await?; ``` `kuon::TwitterAPI::new()` is an async function because the API for obtaining the bearer token is called when the instance is created.

## Now ```rust let api = kuon::TwitterAPI::new() let res = api.search("query"); ```