Current section

Files

Jump to
closure_table examples ct_ecto deps fs src fs_app.erl
Raw

examples/ct_ecto/deps/fs/src/fs_app.erl

-module(fs_app).
-behaviour(application).
-export([start/2, stop/1]).
start(_StartType, _StartArgs) ->
case application:get_env(fs, backwards_compatible) of
{ok, false} -> {ok, self()};
{ok, true} -> fs:start_link(default_fs) end.
stop(_State) -> ok.