summaryrefslogtreecommitdiff
path: root/handler.go
AgeCommit message (Collapse)Author
2023-02-12Centralize templatingxengineering
This makes templating easier and allows to use partial templates.
2023-02-11Remove most function-inline commentsxengineering
Docstrings for functions are a good thing. But the inside of a function should be written in a way that is self-explaining. Thus inline comments are just extra stuff to maintain and read.
2023-02-11Apply go fmt *.goxengineering
This auto-applies the recommended Go codestyle.
2023-02-11Rework loggingxengineering
Logging during a request is at the moment not really needed. Printing the config to the log was a stupid idea too.
2023-02-11Switch to global database pointerxengineering
Passing the database pointer around is a lot of text and has no benefit.
2023-02-11Migrate storage.go to global configxengineering
2023-02-11Switch webserver to global config structxengineering
2023-02-09Remove commented codexengineering
2023-02-09Migrate to multiplexer conceptxengineering
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.
2023-02-09Remove errors.goxengineering
This commit refactors the codebase. The functionality of the error handling is slightly reduced but the benefit are around 80 lines of code which could be removed.
2023-02-08Test mux concept with index handlerxengineering
2023-02-08Move all sources to package mainxengineering
This project is not so big that it needs multiple packages.