mirror of
https://github.com/markbeep/AudioBookRequest.git
synced 2026-04-28 12:29:55 -05:00
5 lines
92 B
Python
5 lines
92 B
Python
from typing import NewType
|
|
|
|
Second = NewType("Second", int)
|
|
Minute = NewType("Minute", int)
|