This repository has been archived on 2023-08-07. You can view files and clone it, but cannot push or open issues or pull requests.
temple/lib/dsl.ex
2019-05-10 15:56:09 -04:00

12 lines
168 B
Elixir

defmodule Dsl do
@moduledoc """
Documentation for Dsl.
"""
defmacro __using__(_) do
quote do
import Dsl.Tags
import Dsl.Form
end
end
end