|
|
|
|
|
by _gabe_
1117 days ago
|
|
>> The problem is the amount of ceremony, silly OOP abstractions, dependency injection, etc. Your code snippet certainly has a lot of unnecessary ceremony. Why use a builder object at all? Why use a static class with a function to build the builder object? var builder = createBuilder(args);
// etc...
Would be better. But var app = createWebApp(args);
// etc...
Is even better. No ceremony at all! |
|