summaryrefslogtreecommitdiff
path: root/test/elixir-config/shared/ejabberd_for_validation.exs
blob: 8c0196c7e6da5de3d5bfe9787848b8b6a506364a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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

  module :mod_irc do
  end
end