Initial commit (history reset)

This commit is contained in:
Ronnie 2025-08-20 20:41:33 -04:00
commit 173a4fc272
47 changed files with 7016 additions and 0 deletions

View file

@ -0,0 +1,18 @@
import { Command } from "../../types/command";
const whoamiCommand: Command = {
metadata: {
name: "whoami",
description: "Show current user",
icon: "👤",
},
execute: () => {
return [
<div key="whoami" className="text-gray-400">
ronnie
</div>
];
},
};
export default whoamiCommand;