refactor: cleanup

This commit is contained in:
lqure 2019-05-14 10:08:15 +02:00
parent 54d656ae74
commit 8dd9f5fc0c
2 changed files with 0 additions and 14 deletions

0
.gitmodules vendored
View File

View File

@ -1,14 +0,0 @@
from client import RCFClient
import time
client = RCFClient()
client.connect("127.0.0.1",5555)
try:
while True:
client.set('key', 1)
# Distribute as key-value message
time.sleep(1)
except KeyboardInterrupt:
pass