import { Command } from "../../types/command"; const whoamiCommand: Command = { metadata: { name: "whoami", description: "Show current user", icon: "👤", }, execute: () => { return [
ronnie
]; }, }; export default whoamiCommand;