Cache system added using sqlite. Should be nicer to the server.

This commit is contained in:
Storm Dragon
2025-12-16 22:47:43 -05:00
parent 0a952afb21
commit 221224270b
10 changed files with 1950 additions and 19 deletions

17
test.py Normal file
View File

@@ -0,0 +1,17 @@
"""
Lightweight test runner.
Usage:
python test.py
"""
import sys
import pytest
def main() -> int:
return pytest.main(["-q"])
if __name__ == "__main__":
sys.exit(main())