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