summaryrefslogtreecommitdiff
path: root/lib/lsg.ex
blob: cf1e50e6ee9465e6de073133759e631838070817 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
defmodule LSG do

  def data_path(suffix) do
    Path.join(data_path(), suffix)
  end

  def data_path do
    Application.get_env(:lsg, :data_path)
  end

end