7 lines
163 B
Python
7 lines
163 B
Python
|
|
#!/usr/bin/env python
|
||
|
|
# -*- coding: utf-8 -*-
|
||
|
|
|
||
|
|
async def boot():
|
||
|
|
"""脚本启动函数"""
|
||
|
|
result = await VWED.data.get_all_cache_params()
|
||
|
|
print(result)
|