Spaces:
Sleeping
Sleeping
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 | |