package main import ( "errors" ) var ( ErrPostNotFound = errors.New("Post not found.") )