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, loginStartStore StartStore, noLoginStartStore StartStore) *cobra.Command
func WorkspacesFromWorkspaceWithMeta ¶ added in v0.6.2
func WorkspacesFromWorkspaceWithMeta(wwm []entity.WorkspaceWithMeta) []entity.Workspace
NADER IS SO FUCKING SORRY FOR DOING THIS TWICE BUT I HAVE NO CLUE WHERE THIS HELPER FUNCTION SHOULD GO SO ITS COPY/PASTED ELSEWHERE IF YOU MODIFY IT MODIFY IT EVERYWHERE OR PLEASE PUT IT IN ITS PROPER PLACE. thank you you're the best <3
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 { 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) GetWorkspaceMetaData(workspaceID string) (*entity.WorkspaceMetaData, error) GetSetupScriptContentsByURL(url string) (string, error) }
Click to show internal directories.
Click to hide internal directories.