opentalk-client-requests-api-v1 0.0.2

Datatypes that describe requests to the endpoints of the OpenTalk v1 API to be used by clients
Documentation
1
2
3
4
5
6
7
8
9
10
11
// SPDX-FileCopyrightText: OpenTalk GmbH <mail@opentalk.eu>
//
// SPDX-License-Identifier: EUPL-1.2

//! Requests for the API endpoints under `/auth`

mod login_get_request;
mod login_post_request;

pub use login_get_request::LoginGetRequest;
pub use login_post_request::LoginPostRequest;