Detailed meeting nodes #2

Open
opened 2022-04-27 02:43:36 +03:00 by profitroll · 0 comments
Owner

Create some information about meeting nodes to make editor more automatic

{
    "title": {
        "type": "string",
        "forbidden": ["\n"],
        "min": 3,
        "max": 60
    },
    "link": {
        "type": "string",
        "format": "REGEX"
    }
}
try:
    for node in nodes_list:
        fillNode(node)
except KeyboardInterrupt:
    return

def fillNode(node):
    while True:
        pass
    return
Create some information about meeting nodes to make editor more automatic ``` { "title": { "type": "string", "forbidden": ["\n"], "min": 3, "max": 60 }, "link": { "type": "string", "format": "REGEX" } } ``` ``` try: for node in nodes_list: fillNode(node) except KeyboardInterrupt: return def fillNode(node): while True: pass return ```
Sign in to join this conversation.
No description provided.