afia 0.1.0

Afia's API client
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Our public CLI that we ship to users.

#![deny(missing_docs)]

#[cfg(test)]
mod intentionally_here {
    //! Keeping this here makes it easy to run all of the crate's tests from within the IDE.
    //! You can call run tests in your IDE from the lib.rs file
    //! (as long as your cursor is outside of this test module), which will then run all
    //! of the tests in the crate (since every module is a descendent of lib.rs.)

    #[test]
    fn intentionally_here() {}
}