smokestack/lib/smokestack.ex

25 lines
401 B
Elixir
Raw Normal View History

2023-08-09 20:18:46 +12:00
defmodule Smokestack do
2023-08-10 21:01:45 +12:00
alias Spark.{Dsl, Dsl.Extension}
2023-08-09 20:18:46 +12:00
@moduledoc """
2023-08-10 21:01:45 +12:00
<!--- ash-hq-hide-start --> <!--- -->
## DSL Documentation
### Index
2023-08-09 20:18:46 +12:00
2023-08-10 21:01:45 +12:00
#{Extension.doc_index(Smokestack.Dsl.sections())}
2023-08-09 20:18:46 +12:00
2023-08-10 21:01:45 +12:00
### Docs
2023-08-09 20:18:46 +12:00
2023-08-10 21:01:45 +12:00
#{Extension.doc(Smokestack.Dsl.sections())}
<!--- ash-hq-hide-stop --> <!--- -->
2023-08-09 20:18:46 +12:00
"""
2023-08-10 21:01:45 +12:00
use Dsl, default_extensions: [extensions: [Smokestack.Dsl]]
@type t :: module
2023-08-09 20:18:46 +12:00
end