9 lines
138 B
Python
9 lines
138 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
"""
|
|
OAuth 第三方登录模块
|
|
"""
|
|
from core.oauth.api import router
|
|
|
|
__all__ = ['router']
|