Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-02-11 | Switch to global database pointer | xengineering | |
Passing the database pointer around is a lot of text and has no benefit. | |||
2023-02-11 | Switch webserver to global config struct | xengineering | |
2023-02-09 | Migrate to multiplexer concept | xengineering | |
This introduces a layered approach to handling HTTP requests: - server layer - path layer - request layer The multiplexer file cares about the path layer. It delegates the request handling to handlers from the request layer. |