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

12 lines
146 B
Elixir
Raw Normal View History

2019-04-15 01:44:39 +00:00
defmodule Dsl do
@moduledoc """
Documentation for Dsl.
"""
2019-04-15 02:35:42 +00:00
defmacro __using__(_) do
2019-04-15 01:44:39 +00:00
quote do
import Dsl.Html
end
end
end