add user id to order

This commit is contained in:
2025-07-23 01:05:21 -03:00
parent 896e0f1054
commit edecbce356
7 changed files with 41 additions and 113 deletions

View File

@@ -1,10 +1,11 @@
import os
from dataclasses import dataclass
from uuid import uuid4
import jsonlines
import pytest
PYTEST_TABLE_NAME = 'pytest'
PYTEST_TABLE_NAME = f'pytest-{uuid4()}'
PK = 'id'
SK = 'sk'