Move Error to constants

This commit is contained in:
speatzle 2024-05-21 16:29:30 +02:00
parent 4c1e29265e
commit c7560b2eaa
2 changed files with 7 additions and 2 deletions

5
constants/error.go Normal file
View file

@ -0,0 +1,5 @@
package constants
import "fmt"
var ErrTaskDoesNotExist = fmt.Errorf("Task does not Exist")