This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """SOX Compliance Monitor - A simple infrastructure monitoring API.""" | |
| from fastapi import FastAPI | |
| from routes import router | |
| app = FastAPI( | |
| title="SOX Compliance Monitor", | |
| description="Infrastructure Monitoring & SOX Compliance Tool", | |
| version="1.0.0", | |
| ) |