Compare commits

..

No commits in common. "917352772f0e264ce6b67aef915a89701be9b3f0" and "0af0625fed87bc2b9ec57658b40e37b4a30cb15f" have entirely different histories.

3 changed files with 6 additions and 6 deletions

View File

@ -57,7 +57,7 @@ def register_hotkeys(duckypad):
step()
def run():
def main():
xair_config = configuration.get('xair')
with voicemeeterlib.api('potato') as vm:
@ -69,3 +69,7 @@ def run():
print('press ctrl+m to quit')
keyboard.wait('ctrl+m')
if __name__ == '__main__':
main()

View File

@ -1 +0,0 @@
from .duckypad import run

View File

@ -32,12 +32,9 @@ dependencies = [
"xair-api>=2.4.1",
"slobs_websocket@git+https://git@github.com/onyx-and-iris/slobs_websocket@v0.1.4#egg=slobs_websocket",
"obsws-python>=1.7.0",
"vban-cmd>=2.5.2",
"vban-cmd>=2.5.1",
]
[project.scripts]
duckypad-cli = "duckypad_twitch.cli:run"
[project.urls]
Documentation = "https://github.com/unknown/duckypad-twitch#readme"
Issues = "https://github.com/unknown/duckypad-twitch/issues"