tts-external-api 0.1.4

Rust implementation of the External Editor API for Tabletop Simulator
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::messages::{Answer, Message};
use thiserror::Error;

#[derive(Error, Debug)]
pub enum Error {
    #[error("message was of type {0:?}")]
    MessageError(Message),
    #[error("answer was of type {0:?}")]
    AnswerError(Answer),
}