在Micropythond中如何判断回调的方法是协程方法?
三个函数方法: async def test1(): print(f'async fn') def test2(): print(f'fn') async def test1(arg1: int): print(f'async fn {arg1}') 我们