mirror of
https://github.com/onyx-and-iris/vban-cmd-python.git
synced 2024-11-15 17:10:46 +00:00
6e40ceb346
add first tests
10 lines
164 B
Python
10 lines
164 B
Python
import vban_cmd
|
|
from time import sleep
|
|
|
|
def main():
|
|
with vban_cmd.connect('potato', ip='ws.local') as vban:
|
|
pass
|
|
|
|
if __name__ == '__main__':
|
|
main()
|