Packages

A library for creating LTI 1.3 Tools in Gleam

Current section

Files

Jump to
lightbulb src lightbulb@providers@http_provider.erl
Raw

src/lightbulb@providers@http_provider.erl

-module(lightbulb@providers@http_provider).
-compile([no_auto_import, nowarn_unused_vars, nowarn_unused_function, nowarn_nomatch]).
-export_type([http_provider/0]).
-type http_provider() :: {http_provider,
fun((gleam@http@request:request(binary())) -> {ok,
gleam@http@response:response(binary())} |
{error, binary()})}.