1:- module(bc_send, [
    2    bc_send_404/0
    3]).

Helper HTTP response predicates

The module provides HTTP predicates to send common responses. */

 bc_send_404 is det
Helper to send HTTP 404 Not Found response.
   15bc_send_404:-
   16    http_current_request(Request),
   17    http_404([], Request)