(text: str)
| 1 | from sqlbot_xpack.core import sqlbot_decrypt as xpack_sqlbot_decrypt, sqlbot_encrypt as xpack_sqlbot_encrypt |
| 2 | |
| 3 | async def sqlbot_decrypt(text: str) -> str: |
| 4 | return await xpack_sqlbot_decrypt(text) |
| 5 | |
| 6 | async def sqlbot_encrypt(text: str) -> str: |
| 7 | return await xpack_sqlbot_encrypt(text) |
no outgoing calls
no test coverage detected