-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfetch.json
More file actions
18 lines (18 loc) · 725 Bytes
/
Copy pathfetch.json
File metadata and controls
18 lines (18 loc) · 725 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"nodes": [
{ "id": "start", "kind": "ellipse", "x": 360, "y": 24, "w": 130, "h": 56, "label": "Start" },
{ "id": "load", "x": 350, "y": 130, "label": "Loading" },
{ "id": "check", "kind": "diamond", "x": 350, "y": 240, "w": 150, "h": 96, "label": "OK?" },
{ "id": "ok", "x": 150, "y": 380, "label": "Success" },
{ "id": "err", "x": 560, "y": 380, "label": "Error" }
],
"edges": [
{ "from": "start", "to": "load" },
{ "from": "load", "to": "check" },
{ "from": "check", "to": "ok", "label": "yes" },
{ "from": "check", "to": "err", "label": "no" },
{ "from": "ok", "to": "start" },
{ "from": "err", "to": "start" }
],
"play": ["start", "load", "check", "ok", "start"]
}