- Add pkg/workspace package with config and commands - Integrate with pkg/php/cmd.go for context switching - Refactor pkg/repos to use pkg/workspace for config - Register workspace commands in full variant
7 lines
121 B
Go
7 lines
121 B
Go
package workspace
|
|
|
|
import "github.com/host-uk/core/pkg/cli"
|
|
|
|
func init() {
|
|
cli.RegisterCommands(AddWorkspaceCommands)
|
|
}
|