summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2026-05-23Register routes with init()xengineering
This makes the used *mux.Router from github.com/gorilla/mux a global variable. A new router is created in the line where the global variable is created. Handlers can be added across the code base in init() functions.
2026-05-23Add /versionxengineering
2026-05-23Log HTTP URLxengineering
2026-05-21Fix stop messagexengineering
2026-05-21Add HTTP-based hello worldxengineering
This demonstrates the HTTP server is working.
2026-05-21Add github.com/gorilla/mux v1.8.1xengineering
This should be used for the HTTP routing.
2026-05-21Log start and stop of serverxengineering
2026-05-21Introduce run() functionxengineering
This function should be called by main but can also be called by a unit test to run a server which might have different arguments which will likely be added.
2026-05-21Add Go hello world programxengineering
This is a starting point to build the server.
2026-05-21Add go.mod filexengineering
This makes the repository a Go module which is required to fetch dependencies.
2026-05-21Add README.mdxengineering
This explains the purpose of the project.
2026-05-21Add Mozilla Public License 2.0xengineering