1:- module(bc_send, [ 2 bc_send_404/0 3]).
The module provides HTTP predicates to send common responses. */
15bc_send_404:- 16 http_current_request(Request), 17 http_404([], Request)
Helper HTTP response predicates
The module provides HTTP predicates to send common responses. */