From f560df0270d88f18e9f989fa76516fa61d227547 Mon Sep 17 00:00:00 2001 From: Eli Bosley Date: Thu, 23 Jan 2025 16:40:49 -0500 Subject: [PATCH] feat: unnecessary comment --- api/src/unraid-api/cli/restart.command.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/api/src/unraid-api/cli/restart.command.ts b/api/src/unraid-api/cli/restart.command.ts index 3e5e96921..0812e217e 100644 --- a/api/src/unraid-api/cli/restart.command.ts +++ b/api/src/unraid-api/cli/restart.command.ts @@ -4,9 +4,6 @@ import { Command, CommandRunner } from 'nest-commander'; import { ECOSYSTEM_PATH, PM2_PATH } from '@app/consts'; import { LogService } from '@app/unraid-api/cli/log.service'; -/** - * Stop a running API process and then start it again. - */ @Command({ name: 'restart', description: 'Restart / Start the Unraid API' }) export class RestartCommand extends CommandRunner { constructor(private readonly logger: LogService) {