add (cached) /api/datapackge endpoint

This commit is contained in:
Fabian Dill
2021-07-21 22:55:44 +02:00
parent 2fc4006dfa
commit 312f13e254
2 changed files with 11 additions and 3 deletions

View File

@@ -6,7 +6,7 @@ import logging
import json
import functools
from collections import OrderedDict, Counter, deque
from typing import List, Dict, Optional, Set, Iterable, Union
from typing import List, Dict, Optional, Set, Iterable, Union, Any
import secrets
import random
@@ -23,7 +23,7 @@ class MultiWorld():
plando_items: List
plando_connections: List
er_seeds: Dict[int, str]
worlds: Dict[int, "AutoWorld.World"]
worlds: Dict[int, Any]
is_race: bool = False
class AttributeProxy():