none 8 months ago
parent 2d364582fa
commit 817c713011

@ -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:
# Получаем все сайты # Получаем все сайты

Loading…
Cancel
Save