Packages
integratedb
0.1.0
IntegrateDB is a database sharing system. It provides integration primitives and data ownership and migration controls. Use it to integrate applications directly through a Postgres database.
Current section
Files
Jump to
Current section
Files
lib/integrate/config.ex
defmodule Integrate.Config do
@moduledoc """
Config helpers.
"""
alias Integrate.Validate
def namespace do
:integratedb
|> Application.fetch_env!(:db_namespace)
|> Validate.validate_and_downcase_namespace()
end
end