9 lines
247 B
Python
9 lines
247 B
Python
from flask import Blueprint
|
|
|
|
bp = Blueprint('auth', __name__)
|
|
|
|
from app.auth import routes
|
|
|
|
google_client_id = '158082608933-4m1ehbkkk7qadekmp3hvl02oht2o1ucg.apps.googleusercontent.com'
|
|
GOOGLE_CLIENT_SECRET = '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'
|