File size: 203 Bytes
b6f0124
0fea377
 
 
 
 
 
b6f0124
1
2
3
4
5
6
7
8
9
defmodule Chai do
  @doc """
  Returns path to uploaded file with the given filename.
  """
  def upload_path(filename) do
    Path.join([:code.priv_dir(:chai), "static", "uploads", filename])
  end
end