1# Copyright 2019 The Chromium Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4"""Sheriff Config Service
5
6This service implements the requirements for supporting sheriff configuration
7file validation.
8"""
9from __future__ import print_function
10from __future__ import division
11from __future__ import absolute_import
12
13try:
14  import googleclouddebugger
15  googleclouddebugger.enable()
16except ImportError:
17  pass
18
19import logging
20import google.cloud.logging
21
22google.cloud.logging.Client().setup_logging(log_level=logging.DEBUG)
23
24import service
25
26APP = service.CreateApp()
27