This commit is contained in:
bitfl0wer 2023-04-21 14:30:03 +02:00
parent ff6874abcb
commit 950eba2ae7
No known key found for this signature in database
GPG Key ID: 84BBB60DF895ABF2
1 changed files with 1 additions and 0 deletions

View File

@ -13,6 +13,7 @@ pub mod register {
let client = Client::new(); let client = Client::new();
let endpoint_url = self.urls.get_api().to_string() + "/auth/register"; let endpoint_url = self.urls.get_api().to_string() + "/auth/register";
let request_builder = client.post(endpoint_url).body(json_schema.to_string()); let request_builder = client.post(endpoint_url).body(json_schema.to_string());
// TODO
} }
} }