first commit

This commit is contained in:
sky
2025-06-22 11:41:21 -04:00
commit bc03213b0b
28 changed files with 5964 additions and 0 deletions

15
log.js Executable file
View File

@ -0,0 +1,15 @@
import chalk from "chalk";
const log = {
info: function (msg) {
return chalk.gray.italic(msg);
},
success: function(msg) {
return chalk.green(msg);
},
error: function(msg) {
return chalk.red.bold(msg);
}
};
export { log };