aboutsummaryrefslogtreecommitdiff
path: root/test/elixir-config/shared/ejabberd_for_validation.exs
blob: e47d925a9cac39c62588200b097371d98d365508 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
defmodule Ejabberd.ConfigFile do
  use Ejabberd.Config

  def start do
    [loglevel: 4,
     language: "en",
     hosts: ["localhost"]]
  end

  module :mod_time do
    @attr_not_supported true
  end

  module :mod_configure do
    @dependency [:mod_adhoc]
  end

end