aboutsummaryrefslogtreecommitdiff
path: root/wqflask/gn2_main.py
AgeCommit message (Collapse)Author
2023-12-29Namespace all modules under gn2.Arun Isaac
We move all modules under a gn2 directory. This is important for "correct" packaging and deployment as a Guix service.
2023-06-22Create new entry-point module to reduce chances of circular imports.Frederick Muriuki Muriithi
This commit creates a new entry-point module (wqflask/gn2_main.py) and imports all the other modules that import the application object with something like: `from wqflask import app` This breaks the subtle circular-import cycle that tends to cause a lot of inconveniences when developing the application.