mirror of
https://github.com/markbeep/AudioBookRequest.git
synced 2026-01-24 23:20:09 -06:00
5 lines
92 B
Python
5 lines
92 B
Python
from typing import NewType
|
|
|
|
Second = NewType("Second", int)
|
|
Minute = NewType("Minute", int)
|