fix: restore init() for command self-registration
Some checks failed
Security Scan / security (push) Successful in 7s
Test / test (push) Failing after 1m30s

Co-Authored-By: Virgil <virgil@lethean.io>
This commit is contained in:
Snider 2026-03-04 17:40:04 +00:00
parent 39edb7f289
commit 05d2480f5e

4
cmd.go
View file

@ -9,6 +9,10 @@ import (
"forge.lthn.ai/core/go/pkg/io"
)
func init() {
cli.RegisterCommands(AddPHPCommands)
}
// DefaultMedium is the default filesystem medium used by the php package.
// It defaults to io.Local (unsandboxed filesystem access).
// Use SetMedium to change this for testing or sandboxed operation.