Move pkg/cli from core/go to core/cli. Includes Frame AppShell, Stream, TaskTracker, Tree, Rich Table. Update imports to v0.0.1 tagged deps and fix openpgp import path for go-crypt split. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
24 lines
731 B
Go
24 lines
731 B
Go
package main
|
|
|
|
import (
|
|
"forge.lthn.ai/core/cli/cmd/config"
|
|
"forge.lthn.ai/core/cli/cmd/doctor"
|
|
"forge.lthn.ai/core/cli/cmd/help"
|
|
"forge.lthn.ai/core/cli/cmd/module"
|
|
"forge.lthn.ai/core/cli/cmd/pkgcmd"
|
|
"forge.lthn.ai/core/cli/cmd/plugin"
|
|
"forge.lthn.ai/core/cli/cmd/session"
|
|
"forge.lthn.ai/core/cli/pkg/cli"
|
|
)
|
|
|
|
func main() {
|
|
cli.Main(
|
|
cli.WithCommands("config", config.AddConfigCommands),
|
|
cli.WithCommands("doctor", doctor.AddDoctorCommands),
|
|
cli.WithCommands("help", help.AddHelpCommands),
|
|
cli.WithCommands("module", module.AddModuleCommands),
|
|
cli.WithCommands("pkg", pkgcmd.AddPkgCommands),
|
|
cli.WithCommands("plugin", plugin.AddPluginCommands),
|
|
cli.WithCommands("session", session.AddSessionCommands),
|
|
)
|
|
}
|