- 8 DB models (services, incidents, monitors, subscribers, etc.) - Full CRUD API for services, incidents, monitors - Public status page with live data - Incident detail page with timeline - API key authentication - Uptime monitoring scheduler - 13 tests passing - TECHNICAL_DESIGN.md with full spec
17 lines
351 B
Python
17 lines
351 B
Python
"""
|
|
pygments.__main__
|
|
~~~~~~~~~~~~~~~~~
|
|
|
|
Main entry point for ``python -m pygments``.
|
|
|
|
:copyright: Copyright 2006-present by the Pygments team, see AUTHORS.
|
|
:license: BSD, see LICENSE for details.
|
|
"""
|
|
|
|
import sys
|
|
import pygments.cmdline
|
|
|
|
try:
|
|
sys.exit(pygments.cmdline.main(sys.argv))
|
|
except KeyboardInterrupt:
|
|
sys.exit(1)
|