Files
tesseract/internal/workspace/errors.go

10 lines
141 B
Go
Raw Normal View History

2024-12-02 19:12:26 +00:00
package workspace
type errWorkspaceExists struct {
message string
}
func (err *errWorkspaceExists) Error() string {
return err.message
}