Fix wrong namespace in go-xcaddy package

This commit is contained in:
crazywhalecc 2025-12-08 10:59:07 +08:00 committed by Jerry Ma
parent 6775cb4674
commit 3ff762c4c8
2 changed files with 2 additions and 2 deletions

View File

@ -4,13 +4,13 @@ declare(strict_types=1);
namespace Package\Artifact;
use SPC\util\GlobalEnvManager;
use StaticPHP\Artifact\ArtifactDownloader;
use StaticPHP\Artifact\Downloader\DownloadResult;
use StaticPHP\Attribute\Artifact\AfterBinaryExtract;
use StaticPHP\Attribute\Artifact\CustomBinary;
use StaticPHP\Exception\DownloaderException;
use StaticPHP\Runtime\SystemTarget;
use StaticPHP\Util\GlobalEnvManager;
use StaticPHP\Util\System\LinuxUtil;
class go_xcaddy

View File

@ -4,9 +4,9 @@ declare(strict_types=1);
namespace Package\Target;
use SPC\util\GlobalEnvManager;
use StaticPHP\Attribute\Package\InitPackage;
use StaticPHP\Attribute\Package\Target;
use StaticPHP\Util\GlobalEnvManager;
#[Target('go-xcaddy')]
class go_xcaddy