refactor: change from standar backend api to python library

This commit is contained in:
AlanSilvaaa
2026-05-28 15:02:42 -04:00
parent 8d3a18ec39
commit da59c4e64d
23 changed files with 331 additions and 833 deletions

View File

@@ -1,4 +1,18 @@
from app.main import create_app
from app.problems.grade_1 import (
compose_and_decompose_numbers,
join_corresponding_sums,
join_pictures_with_quantity,
subtract_with_image_reference,
sum_with_image_reference,
where_are_more_items,
)
__all__ = ["create_app"]
__all__ = [
"compose_and_decompose_numbers",
"join_corresponding_sums",
"join_pictures_with_quantity",
"subtract_with_image_reference",
"sum_with_image_reference",
"where_are_more_items",
]