mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
99c579b45a
Signed-off-by: Daniel Weiße <dw@edgeless.systems>
23 lines
744 B
Go
23 lines
744 B
Go
/*
|
|
Copyright (c) Edgeless Systems GmbH
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
/*
|
|
Package cmd provides the Constellation CLI.
|
|
|
|
It is responsible for the interaction with the user.
|
|
|
|
Logic should be kept to input/output parsing whenever possible.
|
|
Any more complex code should usually be implemented in one of the other CLI packages.
|
|
|
|
The code here should be kept as cloud provider agnostic as possible.
|
|
Any CSP specific tasks should be handled by the "cloudcmd" package.
|
|
|
|
All filepaths handled by the CLI code should originate from here.
|
|
Common filepaths are defined as constants in the global "/internal/constants" package.
|
|
To generate workspace correct filepaths for printing, use the functions from the "workspace" package.
|
|
*/
|
|
package cmd
|