Skip to content

Commit

Permalink
deploy: aed52c2
Browse files Browse the repository at this point in the history
  • Loading branch information
andrus committed Apr 25, 2024
1 parent d30b999 commit 0913636
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions docs/3.x/bootique-docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ <h1>
<li><a href="#_programming" class="nav-link">2. Programming</a>
<ul class="sectlevel2 nav">
<li><a href="#_modules" class="nav-link">2.1. Modules</a></li>
<li><a href="#_objects_assembly" class="nav-link">2.2. Objects "Assembly"</a></li>
<li><a href="#_objects_assembly" class="nav-link">2.2. Objects Assembly</a></li>
<li><a href="#_configuration" class="nav-link">2.3. Configuration</a></li>
<li><a href="#_commands" class="nav-link">2.4. Commands</a></li>
<li><a href="#_options" class="nav-link">2.5. Options</a></li>
Expand Down Expand Up @@ -433,6 +433,7 @@ <h4 id="_modules_metadata">2.1.2. Modules Metadata</h4>
public ModuleCrate crate() {
return ModuleCrate.of(this)
.description("Module that does something useful")
.config("mymodulewithcrate", MyConfig.class)
.build();
}</code></pre>
</div>
Expand All @@ -449,7 +450,7 @@ <h4 id="_deprecating_modules">2.1.3. Deprecating Modules</h4>
</div>
</div>
<div class="sect2">
<h3 id="_objects_assembly">2.2. Objects "Assembly"</h3>
<h3 id="_objects_assembly">2.2. Objects Assembly</h3>
<div class="paragraph">
<p>As mentioned above, <code>BQRuntime</code> is a holder of all application objects, and modules are blueprints to create those objects. You’d write your own module code to define how your objects should be created and initialized. This is done via bindings and "provider" methods, and with the assistance of the dependency injection (DI) mechanism built into Bootique.</p>
</div>
Expand Down
2 changes: 1 addition & 1 deletion docs/3.x/bootique-docs/index.toc.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<li><a href="#_programming" class="nav-link">2. Programming</a>
<ul class="sectlevel2 nav">
<li><a href="#_modules" class="nav-link">2.1. Modules</a></li>
<li><a href="#_objects_assembly" class="nav-link">2.2. Objects "Assembly"</a></li>
<li><a href="#_objects_assembly" class="nav-link">2.2. Objects Assembly</a></li>
<li><a href="#_configuration" class="nav-link">2.3. Configuration</a></li>
<li><a href="#_commands" class="nav-link">2.4. Commands</a></li>
<li><a href="#_options" class="nav-link">2.5. Options</a></li>
Expand Down

0 comments on commit 0913636

Please sign in to comment.