1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*!
    The Rollenspielsache is a set of tools for managing tabletop RPG games.
    The goal is to handle the mechanics seamlessly, allowing you to participate in
    or run a tabletop encounter without getting distracted by rule clarifications.

    This library is the core API defining all the entities involved and their relationships.

    # Types
    * Roll
    * RollResult
*/

pub mod character;
pub mod dice;
pub mod error;
pub mod game_system;
mod interface;
pub mod modifier;
pub mod redis;
pub mod skill;

pub use interface::*;

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