12 lines
303 B
Python
12 lines
303 B
Python
from wechatpy.enterprise import WeChatClient
|
|
|
|
from . import api
|
|
|
|
|
|
class JkmWeChatClient(WeChatClient):
|
|
def __init__(self, corp_id, secret, session=None):
|
|
super(JkmWeChatClient, self).__init__(corp_id, secret, session=session)
|
|
|
|
oauth = api.JkmWechatOauth()
|
|
user = api.JkmWechatUser()
|