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
@@ -3,7 +3,7 @@ import {logError, oldSendMessage} from "../util/utils";
import {Message} from "typescript-telegram-bot-api"; import {Message} from "typescript-telegram-bot-api";
import {systemInfoText} from "../index"; import {systemInfoText} from "../index";
export class SystemSpecs extends ChatCommand { export class SystemInfo extends ChatCommand {
title = "/systemInfo"; title = "/systemInfo";
description = "System information"; description = "System information";
+2 -2
View File
@@ -19,7 +19,7 @@ import {Ignore} from "./commands/ignore";
import {Unignore} from "./commands/unignore"; import {Unignore} from "./commands/unignore";
import {Ping} from "./commands/ping"; import {Ping} from "./commands/ping";
import {RandomString} from "./commands/random-string"; import {RandomString} from "./commands/random-string";
import {SystemSpecs} from "./commands/system-specs"; import {SystemInfo} from "./commands/system-info";
import {Test} from "./commands/test"; import {Test} from "./commands/test";
import {inviteAnswers, kickAnswers, muted, readData, retrieveAnswers} from "./db/database"; import {inviteAnswers, kickAnswers, muted, readData, retrieveAnswers} from "./db/database";
import {Uptime} from "./commands/uptime"; import {Uptime} from "./commands/uptime";
@@ -133,7 +133,7 @@ export const chatCommands: ChatCommand[] = [
new Ping(), new Ping(),
new RandomInt(), new RandomInt(),
new RandomString(), new RandomString(),
new SystemSpecs(), new SystemInfo(),
new Uptime(), new Uptime(),
new WhatBetter(), new WhatBetter(),