mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-20 13:49:40 +02:00
10 lines
136 B
Python
10 lines
136 B
Python
|
from dataclasses import dataclass
|
||
|
from typing import Any
|
||
|
|
||
|
|
||
|
@dataclass
|
||
|
class TestUser:
|
||
|
user_id: int
|
||
|
group_id: int
|
||
|
token: Any
|