microecs.utils

utils.py - common utilities used by microecs. Mostly logger and types used across the code.

1"""utils.py - common utilities used by microecs. Mostly logger and types used across the code."""
2from loggez import make_logger
3
4PoolKey = int
5EntityId = int
6Shape = tuple[int, ...]
7
8logger = make_logger("MICROECS")
PoolKey = <class 'int'>
EntityId = <class 'int'>
Shape = tuple[int, ...]
logger = <loggez.loggez.LoggezLogger object>