guth 0.1.0

Core helpers for guth runtime orchestration
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![forbid(unsafe_code)]

/// Placeholder function for the initial `guth` crate.
pub fn hello() -> &'static str {
    "hello from guth"
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn hello_works() {
        assert_eq!(hello(), "hello from guth");
    }
}