blob: b8e6f228ca3300255886d64a0a2cd6713e0e3fc4 [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.
"""Module for current GAE project's configs."""
import os
from google.appengine.ext import vendor
# Add any third-party libraries install in the "lib" folder.
third_party_lib_path = os.path.join(
os.path.dirname(os.path.realpath(__file__)), 'lib')
if os.path.exists(third_party_lib_path):
vendor.add(third_party_lib_path)