channel rewards service #34

Merged
alex_orid merged 13 commits from channelpoints-service into v2.0 2021-04-27 18:15:04 +00:00
Showing only changes of commit 2c7a2b3ef0 - Show all commits

View File

@ -69,6 +69,16 @@ class Twitch_Pubsub():
print('got callback for UUID ' + str(uuid))
pprint(data)
def callback_bits(self, uuid: UUID, data: dict) -> None:
print("Bits Redemption")
print('got callback for UUID ' + str(uuid))
pprint(data)
def callback_subs(self, uuid: UUID, data: dict) -> None:
print("Subs Redemption")
print('got callback for UUID ' + str(uuid))
pprint(data)
if __name__ == "__main__":
testModule = Twitch_Pubsub()