/ open-webui.git
/ app
/ env
/ lib
/ python3.11
/ site-packages
/ rich
/ region.py
Run
Starting...
Stop
View File
Save
from typing import NamedTuple class Region(NamedTuple): """Defines a rectangular region of the screen.""" x: int y: int width: int height: int
Memory