Move ANSI* commands to BBS/
Some checks failed
Create Docker Image / Build Docker Image (x86_64) (push) Successful in 35s
Create Docker Image / Build Docker Image (arm64) (push) Successful in 1m44s
Create Docker Image / Final Docker Image Manifest (push) Has been cancelled

This commit is contained in:
Deon George 2024-05-28 12:43:58 +10:00
parent b43784574c
commit 1e617bb8be
3 changed files with 5 additions and 5 deletions

View File

@ -1,6 +1,6 @@
<?php
namespace App\Console\Commands;
namespace App\Console\Commands\BBS;
use Illuminate\Console\Command;
@ -13,7 +13,7 @@ class ANSIDecode extends Command
*
* @var string
*/
protected $signature = 'ansi:decode'
protected $signature = 'bbs:ansi:decode'
.' {file : ANS file to decode}';
/**

View File

@ -1,6 +1,6 @@
<?php
namespace App\Console\Commands;
namespace App\Console\Commands\BBS;
use Illuminate\Console\Command;
@ -13,7 +13,7 @@ class ANSIEncode extends Command
*
* @var string
*/
protected $signature = 'ansi:encode'
protected $signature = 'bbs:ansi:encode'
.' {file : ANS file to encode}';
/**

View File

@ -15,7 +15,7 @@ class FrameImport extends Command
*
* @var string
*/
protected $signature = 'frame:import {frame} {file} '.
protected $signature = 'bbs:frame:import {frame} {file} '.
'{--index=a : The frame index }'.
'{--access=0 : Is frame accessible }'.
'{--public=0 : Is frame limited to CUG }'.