Nicholas Wiersma
Nicholas Wiersma
Hi, According to the docs it should be a drop in replacement. A PR would be appreciated here.
Fair enough. It is something we should account for. At the moment I am busy ripping things apparent to see where the interlinking is. I would like to have ConfigManager...
So it seems the parameters are a difficult concept to handle in C++ in a generic way. Specifically if we remove Json which is desirable. My thoughts moved to a...
So there are 2 ways of thinking about this: 1. `ConfigManager` drops the parameters (in effect) and they move to the `HTTPServer`. `ConfigManager` will basically becomes (logic wise) the `begin`...
So at this point this is thwarting me a bit. Partially cause my brain is stuck in a very Go way of solving this problem, and partially due to the...
I have committed a wip on v3 to show where my brain is on this. I am still very much playing with the struct of this to understand how it...
Hi, Thanks for the PR. I am not keen on splitting out separate header files. I dont see it bringing anything to the party. The tests however are very interesting....
All fair points. My problem starts when you start shifting things that should be in `src` into `lib` which i would argue is technically wrong. I am also not sure...
I would argue that the `lib` folder is for external libs. Even if private (only used by this project) they are still seen as something that can be made into...
So the first question I have is, how does C++ even allow the assignment. Its a strong type language, I would have thought it would be a compile error. In...