fancy printing

This commit is contained in:
2025-02-06 18:48:50 +01:00
parent 37950cfece
commit db1b94119a
6 changed files with 85 additions and 12 deletions
+1 -7
View File
@@ -4,6 +4,7 @@ mod events;
mod messages;
mod python;
mod reddit_data;
mod macros;
use std::env;
use std::process;
@@ -25,13 +26,6 @@ struct Data {
type Error = Box<dyn std::error::Error + Send + Sync>;
type Context<'a> = poise::Context<'a, Data, Error>;
#[macro_export]
macro_rules! rs_println {
($($arg:tt)*) => {
println!("RS - {}", format!($($arg)*));
};
}
#[tokio::main]
async fn main() {