%% @doc Coxen — the phonetic form of coxswain.
%%
%% A next-generation job scheduler in design. This application is currently
%% a placeholder reserving the name on hex.pm; the real Erlang application
%% will land here when the v1 schema settles. See
%% https://github.com/zoratu/coxen for design documents and protobuf schema.
-module(coxen).
-export([info/0, version/0]).
-spec info() -> string().
info() ->
"Coxen — see https://github.com/zoratu/coxen".
-spec version() -> string().
version() ->
"0.0.1".