fix
All checks were successful
Deploy Dev / Build (pull_request) Successful in 4s
Deploy Dev / Push (pull_request) Successful in 8s
Deploy Dev / Deploy dev (pull_request) Successful in 17s

This commit is contained in:
emmatveev 2024-11-24 23:55:46 +03:00
parent bc4f74e20f
commit 2425ee2988

View File

@ -1,4 +1,5 @@
import json
import os
import typing
import urllib.parse
from threading import Thread
@ -112,3 +113,13 @@ class PlatformClient:
def get_experiment(self, name):
return self.experiment_storage[name]
platform = PlatformClient(
os.getenv('PLATFORM_SECURITY_TOKEN'),
'РУЗ Бот',
os.getenv('STAGE'),
['words'],
['alice'],
need_poll=True,
)