telety_impl/lib.rs
1//! Contains code common to telety and telety-macro.
2//! Only items re-exported through telety should be considered public.
3
4pub mod alias;
5pub use alias::Alias;
6mod command;
7pub use command::{Apply, Command};
8pub mod find_and_replace;
9pub mod interop;
10mod item_data;
11mod options;
12pub use options::Options;
13mod syn_util;
14mod telety;
15pub use telety::Telety;
16pub mod version;
17pub mod visitor;
18
19#[macro_export]
20macro_rules! no_telety_error {
21 ($($tokens:tt)*) => {
22 compile_error!("Type does not have a telety macro");
23 };
24}