File tree 2 files changed +6
-5
lines changed
docs/src/files/philosophy
2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 15
15
git diff
16
16
git commit -am " msg"
17
17
18
- $VERSION =" 0.0.22 "
18
+ $VERSION =" 0.0.23 "
19
19
git commit --allow-empty -m " Release $VERSION "
20
20
git tag -a $VERSION -m " Release $VERSION "
21
21
git push --atomic origin main $VERSION
@@ -27,6 +27,8 @@ git push --atomic origin main $VERSION
27
27
28
28
- HTMX headers consts
29
29
30
+ - MiMa bin compat
31
+
30
32
- giter8 template for REST
31
33
- add more validators https://javaee.github.io/javaee-spec/javadocs/javax/validation/constraints/package-summary.html
32
34
- webjars
Original file line number Diff line number Diff line change @@ -17,10 +17,9 @@ object DependencyInjection extends PhilosophyPage {
17
17
18
18
Not in a purely-functional-monadic style.
19
19
20
- Yes in a direct style.
21
- For singletons:
22
- - just instantiate a class and pass the object around
23
- - for request/session-scoped instances use scala 3 context functions (implicit functions)
20
+ Yes in a direct style:
21
+ - for singletons: just *instantiate a class* and pass the object around.
22
+ - for request/session-scoped instances: use scala 3 *context functions* (implicit functions).
24
23
25
24
If you ever used PlayFramework, Slick 2 and similar, you might have used this pattern:
26
25
```scala
You can’t perform that action at this time.
0 commit comments