mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-10-27 16:24:31 -04: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
|