From 8f2043ebf985af1fbf6c0b001425bea8b9970b34 Mon Sep 17 00:00:00 2001 From: Badlop Date: Tue, 20 Dec 2022 11:54:21 +0100 Subject: [PATCH] Use Config instead of the deprecated Mix.Config See https://hexdocs.pm/mix/Mix.Config.html --- ecs/config.exs | 2 +- ecs/rel/dev.exs | 2 +- ecs/rel/prod.exs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ecs/config.exs b/ecs/config.exs index ef479a4..d07a643 100644 --- a/ecs/config.exs +++ b/ecs/config.exs @@ -1,4 +1,4 @@ -use Mix.Config +import Config # This is standard path in the context of ejabberd release config :ejabberd, diff --git a/ecs/rel/dev.exs b/ecs/rel/dev.exs index e36c985..a4c910f 100644 --- a/ecs/rel/dev.exs +++ b/ecs/rel/dev.exs @@ -1,4 +1,4 @@ -use Mix.Config +import Config # This is standard path in the context of ejabberd release config :ejabberd, diff --git a/ecs/rel/prod.exs b/ecs/rel/prod.exs index e36c985..a4c910f 100644 --- a/ecs/rel/prod.exs +++ b/ecs/rel/prod.exs @@ -1,4 +1,4 @@ -use Mix.Config +import Config # This is standard path in the context of ejabberd release config :ejabberd,