10 lines
132 B
Python
10 lines
132 B
Python
"""
|
|
alipay/utils.py
|
|
~~~~~~~~~~
|
|
"""
|
|
|
|
|
|
class AliPayConfig:
|
|
def __init__(self, timeout=15):
|
|
self.timeout = timeout
|