feat: handle workspace conflict error

This commit is contained in:
2024-12-02 19:12:26 +00:00
parent 4c34689ceb
commit 5fa55493b7
12 changed files with 74 additions and 19 deletions

View File

@@ -0,0 +1,9 @@
package workspace
type errWorkspaceExists struct {
message string
}
func (err *errWorkspaceExists) Error() string {
return err.message
}