From f87fae8ef1e2c71e03c018282d2bc5650cfbbcb2 Mon Sep 17 00:00:00 2001 From: Danil Nikolaev Date: Tue, 27 Jan 2026 19:40:05 +0300 Subject: [PATCH] rename systemspecs to systeminfo --- src/commands/{system-specs.ts => system-info.ts} | 2 +- src/index.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) rename src/commands/{system-specs.ts => system-info.ts} (88%) diff --git a/src/commands/system-specs.ts b/src/commands/system-info.ts similarity index 88% rename from src/commands/system-specs.ts rename to src/commands/system-info.ts index 436be3e..5b1a5c9 100644 --- a/src/commands/system-specs.ts +++ b/src/commands/system-info.ts @@ -3,7 +3,7 @@ import {logError, oldSendMessage} from "../util/utils"; import {Message} from "typescript-telegram-bot-api"; import {systemInfoText} from "../index"; -export class SystemSpecs extends ChatCommand { +export class SystemInfo extends ChatCommand { title = "/systemInfo"; description = "System information"; diff --git a/src/index.ts b/src/index.ts index 7e136ea..c3b316f 100644 --- a/src/index.ts +++ b/src/index.ts @@ -19,7 +19,7 @@ import {Ignore} from "./commands/ignore"; import {Unignore} from "./commands/unignore"; import {Ping} from "./commands/ping"; import {RandomString} from "./commands/random-string"; -import {SystemSpecs} from "./commands/system-specs"; +import {SystemInfo} from "./commands/system-info"; import {Test} from "./commands/test"; import {inviteAnswers, kickAnswers, muted, readData, retrieveAnswers} from "./db/database"; import {Uptime} from "./commands/uptime"; @@ -133,7 +133,7 @@ export const chatCommands: ChatCommand[] = [ new Ping(), new RandomInt(), new RandomString(), - new SystemSpecs(), + new SystemInfo(), new Uptime(), new WhatBetter(),