ProzillaOS/src/features/applications/terminal/commands/world.js
2023-12-11 16:51:40 +01:00

6 lines
No EOL
146 B
JavaScript

import Command from "../command.js";
export const world = new Command("world")
.setExecute(function() {
return `${this.name}: Not found`;
});