-module(howdy@context@header). -compile(no_auto_import). -export([get_value/2]). -spec get_value(howdy@context:context(any()), binary()) -> {ok, binary()} | {error, nil}. get_value(Context, Key) -> gleam@http@request:get_header(erlang:element(3, Context), Key).