1package components 2 3import "errors" 4 5var ( 6 NotFound = errors.New("Not found") 7 InvlidaInput = errors.New("Invalid Input") 8)