rename systemspecs to systeminfo

This commit is contained in:
2026-01-27 19:40:05 +03:00
parent 44551af0fa
commit f87fae8ef1
2 changed files with 3 additions and 3 deletions
+13
View File
@@ -0,0 +1,13 @@
import {ChatCommand} from "../base/chat-command";
import {logError, oldSendMessage} from "../util/utils";
import {Message} from "typescript-telegram-bot-api";
import {systemInfoText} from "../index";
export class SystemInfo extends ChatCommand {
title = "/systemInfo";
description = "System information";
async execute(msg: Message) {
await oldSendMessage(msg, systemInfoText).catch(logError);
}
}