32 lines
362 B
Python
32 lines
362 B
Python
from lib import *
|
|
|
|
|
|
"""
|
|
𝌏 Product
|
|
|
|
Something that Crimata is selling. A product represents
|
|
|
|
the thing the customer will get in return for their
|
|
|
|
purchase. \
|
|
|
|
`
|
|
<
|
|
|
|
<name>
|
|
|
|
<photo>
|
|
|
|
<description>
|
|
|
|
>
|
|
|
|
`
|
|
|
|
> name [CharField] Name of the product \
|
|
|
|
> photo [PhotoField] Preview proto of the product \
|
|
|
|
> description [CharField] Brief about \
|
|
|
|
"""
|