Hayato Tsukagoshi
Hayato Tsukagoshi
react-helmet@v6 will break gatsby-plugin-react-helmet 
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"); ```