mirror of
https://github.com/catspace-dev/unicheckbot.git
synced 2024-11-24 23:03:45 +03:00
9 lines
270 B
Python
9 lines
270 B
Python
from core.coretypes import APINode
|
|
from typing import List
|
|
|
|
nodes: List[APINode] = [
|
|
APINode("http://localhost:8080", "CHANGE_TOKEN_BY_ENV"),
|
|
APINode("http://localhost:8080", "CHANGE_TOKEN_BY_ENV"),
|
|
APINode("http://localhost:8080", "CHANGE_TOKEN_BY_ENV"),
|
|
]
|