13 lines
138 B
Python
13 lines
138 B
Python
"""
|
|
WeChat task module.
|
|
|
|
Exports:
|
|
- Wechat: State accessor
|
|
"""
|
|
|
|
from bench_env.task.wechat.app import Wechat
|
|
|
|
__all__ = [
|
|
"Wechat",
|
|
]
|