mirror of
https://gitee.com/fasiondog/hikyuu.git
synced 2024-12-06 05:48:13 +08:00
12 lines
229 B
C++
12 lines
229 B
C++
|
# coding:utf-8
|
||
|
#
|
||
|
# The MIT License (MIT)
|
||
|
#
|
||
|
# Created on: 2020-11-29
|
||
|
# Author: fasiondog
|
||
|
|
||
|
__version__ = "0.0.1"
|
||
|
|
||
|
from .proxy import request_with_proxy, request_with_local
|
||
|
|
||
|
__all__ = ['request_with_proxy', 'request_with_local']
|