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-04-14 22:35:42 -04:00

11 lines
146 B
Elixir

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