Initial commit

This commit is contained in:
Leo Vasanko
2026-06-12 19:18:15 +00:00
commit afebad72df
34 changed files with 3143 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
import pytest
from kanta import JsonSerializer, MsgPackSerializer
@pytest.fixture(
params=[
("json", JsonSerializer),
("msgpack", MsgPackSerializer),
],
ids=["json", "msgpack"],
)
def format_config(request):
return request.param