16 lines
331 B
Python
16 lines
331 B
Python
import pyvts
|
|
import asyncio
|
|
|
|
plugin_info = {
|
|
"plugin_name": "vts-gampad-input",
|
|
"developer": "Melody LaFae",
|
|
"authentication_token_path": f"{os.environ['XDG_CONFIG_DIRS']}/.vts-gampad-authentication-token",
|
|
}
|
|
|
|
class VTSConnection:
|
|
|
|
def __init__(self):
|
|
pass
|
|
|
|
async def connect(self):
|
|
vts = pyvts. |