10 lines
216 B
Python
10 lines
216 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from typing import Self, Any
|
|
|
|
class SessionModel:
|
|
|
|
def __init__(self:Self, id:str) -> None:
|
|
self.id:str = id
|
|
self.variables:dict[str, Any|None] = {} |