mirror of
https://github.com/langbot-app/LangBot.git
synced 2025-11-25 11:29:39 +08:00
7 lines
197 B
Python
7 lines
197 B
Python
class FriendApi:
|
||
"""联系人API类,处理所有与联系人相关的操作"""
|
||
|
||
def __init__(self, base_url: str, token: str):
|
||
self.base_url = base_url
|
||
self.token = token
|