EP_inspection_tool_proto/inspection-app/main.py
James Devine ca3c44483f Add inspection tool prototype files
This commit introduces the initial prototype files for the EP inspection tool. The changes include:
- Added SHARED_TASK_NOTES.md for documentation
- Added inspection-app/ directory containing the main application code
- Added prompt.txt for the inspection prompt

These files establish the foundation for the inspection tool implementation and provide the necessary structure for the application.
2026-03-10 04:43:15 +01:00

8 lines
No EOL
159 B
Python

"""Main entry point for the inspection tool application."""
from app import create_app
app = create_app()
if __name__ == '__main__':
app.run(debug=True)