Compare commits

..

2 commits

Author SHA1 Message Date
198630b35a Merge branch 'feat/cli' of https://git.cscherr.de/PlexSheep/pt into feat/cli
All checks were successful
cargo devel CI / cargo CI (push) Successful in 2m6s
2024-06-27 21:30:04 +02:00
57aa7c256a refactor(printing)!: move core::printing to cli #84 2024-06-27 21:30:02 +02:00
3 changed files with 1 additions and 2 deletions

View file

@ -1,4 +1,5 @@
pub mod repl; pub mod repl;
pub mod printing;
pub use comfy_table; pub use comfy_table;
pub use console; pub use console;

View file

@ -8,5 +8,3 @@
/// macros to make things faster in your code /// macros to make things faster in your code
pub mod macros; pub mod macros;
/// some general use printing to stdout tools
pub mod printing;