14 lines
297 B
Python
14 lines
297 B
Python
#!/bin/python
|
|
|
|
from polyfactory.factories.pydantic_factory import ModelFactory
|
|
|
|
from src.models import B4wExport
|
|
|
|
CATEGORIES = [
|
|
"single_category",
|
|
"root_category:parent_category:leaf_category",
|
|
]
|
|
|
|
class B4wExportFactory(ModelFactory[B4wExport]):
|
|
__model__ = B4wExport
|