astrid-events 0.0.1

This crate is reserved for the Astrid project
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! This crate is reserved for the [Astrid](https://getastr.id) project.
//!
//! It has no functionality yet. If you are interested in this crate name,
//! please open an issue at <https://github.com/astr-id/crate-reservations>.

/// The answer to life, the universe, and everything.
pub const fn the_answer() -> u8 {
    42
}

#[cfg(test)]
mod tests {
    #[test]
    fn deep_thought() {
        assert_eq!(super::the_answer(), 42);
    }
}