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
Mitchell Hanberg 115f148864 Initial commit
2019-04-14 21:44:39 -04:00

12 lines
179 B
Elixir

defmodule Dsl do
@moduledoc """
Documentation for Dsl.
"""
def __using__(_) do
quote do
import Kernel, except: [div: 2]
import Dsl.Html
end
end
end