Files
tesseract/internal/workspace/errors.go

10 lines
141 B
Go

package workspace
type errWorkspaceExists struct {
message string
}
func (err *errWorkspaceExists) Error() string {
return err.message
}