Flask backend with Vue 3 frontend for shop floor machine management. Includes database schema export for MySQL shopdb_flask database. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
8 lines
108 B
Python
8 lines
108 B
Python
"""Printers plugin models."""
|
|
|
|
from .printer_extension import PrinterData
|
|
|
|
__all__ = [
|
|
'PrinterData',
|
|
]
|