Server API v1 #1

Merged
luke merged 30 commits from development into main 2024-05-04 20:22:45 +00:00
Showing only changes of commit 73c97a2c5a - Show all commits

View File

@ -7,3 +7,7 @@ pub fn print_copyright_notice() {
pub fn notice_println(msg: impl Into<String>) {
println!("{}", msg.into().green().bold());
}
pub fn warn_println(msg: impl Into<String>) {
eprintln!("{}", msg.into().yellow().bold());
}