migration_test/migration_test.rs
1use vtcode_core::ui::styled::*;
2
3fn main() {
4 // Test the migrated styling
5 info("Testing migrated styling from main_modular.rs");
6 println!(
7 "{}Debug message{}",
8 Styles::debug().render(),
9 Styles::debug().render_reset()
10 );
11 println!(
12 "{}Info message with custom styling{}",
13 Styles::info().render(),
14 Styles::info().render_reset()
15 );
16
17 println!("Migration test completed successfully!");
18}