Documentation ¶
Overview ¶
Package start is for starting Brev workspaces
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewCmdStart ¶
func NewCmdStart(t *terminal.Terminal, startStore StartStore, noLoginStartStore StartStore) *cobra.Command
Types ¶
type NewWorkspace ¶ added in v0.4.0
func MakeNewWorkspaceFromURL ¶ added in v0.5.0
func MakeNewWorkspaceFromURL(url string) NewWorkspace
type StartStore ¶ added in v0.4.0
type StartStore interface { util.GetWorkspaceByNameOrIDErrStore GetWorkspaces(organizationID string, options *store.GetWorkspacesOptions) ([]entity.Workspace, error) GetActiveOrganizationOrDefault() (*entity.Organization, error) GetCurrentUser() (*entity.User, error) StartWorkspace(workspaceID string) (*entity.Workspace, error) GetWorkspace(workspaceID string) (*entity.Workspace, error) GetOrganizations(options *store.GetOrganizationsOptions) ([]entity.Organization, error) CreateWorkspace(organizationID string, options *store.CreateWorkspacesOptions) (*entity.Workspace, error) GetSetupScriptContentsByURL(url string) (string, error) GetFileAsString(path string) (string, error) }
Click to show internal directories.
Click to hide internal directories.