blob: 01feccb0771f4d1d1a7486063b3c5dff54c3461e [file] [log] [blame]
# Copyright 2017 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""Cron endpoints for CL Exonerator."""
from flask import Flask
app = Flask(__name__)
@app.route('/cron/exonerate')
def Exonerate():
"""Finds and exonerates good CLs that were blamed."""
return 'TODO'