A menu management application built with Django, featuring: - Dish management with cover images - Order system with party dates and participants - REST API with Django REST Framework - Bootstrap-styled frontend Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
6 lines
180 B
Python
6 lines
180 B
Python
from .dish_service import DishService
|
|
from .order_service import OrderService
|
|
from .parser_service import ParserService
|
|
|
|
__all__ = ['DishService', 'OrderService', 'ParserService']
|