-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add documentation for remaining public api (#26)
- Loading branch information
Showing
6 changed files
with
42 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,6 @@ mod logging; | |
pub mod models; | ||
mod routes; | ||
mod services; | ||
pub mod undefined; | ||
|
||
use serde::Deserialize; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,17 @@ | ||
//! This module houses the types you will be dealing with when sending and | ||
//! receiving requests from unkey. | ||
//! | ||
//! Mostly you will be constructing the structs suffixed with `Request`, and | ||
//! receiving the structs suffixed with `Response`. With some minor exceptions | ||
//! like [`Wrapped`] and [`UndefinedOr`]. | ||
mod apis; | ||
mod http; | ||
mod keys; | ||
mod ratelimit; | ||
mod undefined; | ||
|
||
pub use apis::*; | ||
pub use http::*; | ||
pub use keys::*; | ||
pub use ratelimit::*; | ||
pub use undefined::*; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters