aboutsummaryrefslogtreecommitdiff
path: root/azalea-core/src/lib.rs
blob: 887d168669ee130d9f10ddaafee2994e2a36f487 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Random miscellaneous things like UUIDs that don't deserve their own crate.

pub mod game_type;
pub mod resource_location;
pub mod serializable_uuid;

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {
        let result = 2 + 2;
        assert_eq!(result, 4);
    }
}