%% ------------------------------------------------------------------- %% %% xqerl - XQuery processor %% %% Copyright (c) 2019-2020 Zachary N. Dean All Rights Reserved. %% %% This file is provided to you under the Apache License, %% Version 2.0 (the "License"); you may not use this file %% except in compliance with the License. You may obtain %% a copy of the License at %% %% http://www.apache.org/licenses/LICENSE-2.0 %% %% Unless required by applicable law or agreed to in writing, %% software distributed under the License is distributed on an %% "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY %% KIND, either express or implied. See the License for the %% specific language governing permissions and limitations %% under the License. %% %% ------------------------------------------------------------------- -module(xqerl_handler_greeter). % REST Callbacks -export([init/2]). -export([allowed_methods/2]). -export([content_types_provided/2]). % Callback Callbacks -export([greeter_response/2]). init(Req, Opts) -> {cowboy_rest, Req, Opts}. allowed_methods(Req, State) -> {[<<"GET">>], Req, State}. content_types_provided(Req, State) -> {[{<<"text/html">>, greeter_response}], Req, State}. greeter_response(Req, State) -> Reply = gen_server:call(xqerl_main_mod_server, greeter), {Reply, Req, State}.