Beispiel #1
0
def get_tags() -> List[TagObject]:
    tags = Tag.select(lambda t: True)
    return [db_tag_to_tag_object(tag) for tag in tags]