Skip to content

Commit

Permalink
requirement handling (#2)
Browse files Browse the repository at this point in the history
Signed-off-by: Philip-21 <[email protected]>
  • Loading branch information
Philip-21 authored Nov 22, 2024
1 parent 48bde96 commit 211463c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions pkg/provider/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -357,6 +357,11 @@ func (h *HetznerProvider) getProjectLogWriter(workspaceId string, projectName st
return logWriter, cleanupFunc
}

func (h *HetznerProvider) CheckRequirements() (*[]provider.RequirementStatus, error) {
results := []provider.RequirementStatus{}
return &results, nil
}

func getWorkspaceDir(workspaceId string) string {
return fmt.Sprintf("/home/daytona/%s", workspaceId)
}
Expand Down

0 comments on commit 211463c

Please sign in to comment.