12 lines
219 B
Python
12 lines
219 B
Python
"""Sigl Domain Models.
|
|
|
|
Simple Grocery List (Sigl) | sigl.app
|
|
Copyright (c) 2022 Asymworks, LLC. All Rights Reserved.
|
|
"""
|
|
|
|
from .product import Product, ProductLocation
|
|
|
|
__all__ = (
|
|
'Product', 'ProductLocation',
|
|
)
|