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;
9mod item_data;
10mod options;
11pub use options::Options;
12mod syn_util;
13mod telety;
14pub use telety::Telety;
15pub mod version;
16pub mod visitor;
17
18#[macro_export]
19macro_rules! no_telety_error {
20 ($($tokens:tt)*) => {
21 compile_error!("Type does not have a telety macro");
22 };
23}