1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
/// Common types (used in both input/output to Agda).
pub mod base;

/// Response data types (output of Agda).
pub mod resp;

/// Agda commands (input to Agda).
pub mod cmd;

/// Invoke Agda in command line and interact with it via stdio.
pub mod agda;

#[cfg(test)]
mod tests;