librollenspielsache 0.1.2

API for working with tabletop RPG entities.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Library error type.

use thiserror::Error;

// TODO

#[derive(Error, Debug)]
pub enum Error {
    #[error("Invalid roll format: {0}")]
    RollFormat(String),
}