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 61329db39f - Show all commits

View File

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