Skip to main content

resourcespace_client/
lib.rs

1#![doc = include_str!("../README.md")]
2pub mod api;
3mod auth;
4pub mod client;
5pub mod error;
6
7static APP_USER_AGENT: &str = concat!(env!("CARGO_PKG_NAME"), "/", env!("CARGO_PKG_VERSION"),);
8
9// TODO: tests
10#[cfg(test)]
11mod tests {
12
13    // #[test]
14    // fn it_works() {
15    //     let result = add(2, 2);
16    //     assert_eq!(result, 4);
17    // }
18}