mirror of
https://github.com/AppFlowy-IO/AppFlowy-Cloud.git
synced 2025-04-24 05:47:07 -04:00
* chore: appflowy ai client * chore: clippy * chore: clippy * chore: fix ci * chore: disable index search
9 lines
261 B
Rust
9 lines
261 B
Rust
use client_api_test::LOCALHOST_GOTRUE;
|
|
use gotrue::api::Client;
|
|
|
|
#[tokio::test]
|
|
async fn gotrue_health() {
|
|
let http_client = reqwest::Client::new();
|
|
let gotrue_client = Client::new(http_client, &LOCALHOST_GOTRUE);
|
|
gotrue_client.health().await.unwrap();
|
|
}
|