Untitled

 avatar
unknown
plain_text
2 months ago
179 B
2
Indexable
def get_all_alert_logs(self):
        results = self.db.execute("""
            SELECT * FROM alert_log
        """, fetch_all=True)

        return [dict(row) for row in results]
Editor is loading...
Leave a Comment