Improved project structure

This commit is contained in:
2023-10-20 17:07:44 +02:00
parent 886ea27d54
commit 61af142930
18 changed files with 33 additions and 15 deletions

15
src/errors/InvalidPath.go Normal file
View File

@ -0,0 +1,15 @@
package errors
import "fmt"
type InvalidDirectory struct {
Path string
}
func (err *InvalidDirectory) Error() string {
if err.Path == "" {
return "Invalid directory"
}
return fmt.Sprintf("Invalid directory '%s'", err.Path)
}