This commit is contained in:
none 2024-02-25 16:19:56 +03:00
parent 2d364582fa
commit 817c713011

View File

@ -24,9 +24,11 @@ while True:
with sidebar: with sidebar:
st.success(f"Ваш порт: {our_port}") st.success(f"Ваш порт: {our_port}")
ports = read()['ports'] conf = read()
for i in ports: if 'ports' in conf:
st.warning(f"{i}") ports = conf['ports']
for i in ports:
st.warning(f"{i}")
with main: with main:
# Получаем все сайты # Получаем все сайты