Onionr/onionr/onionrtypes/__init__.py

11 lines
286 B
Python

from typing import NewType
UserID = NewType('UserID', str)
UserIDSecretKey = NewType('UserIDSecretKey', str)
DeterministicKeyPassphrase = NewType('DeterministicKeyPassphrase', str)
BlockHash = NewType('BlockHash', str)
RestartRequiredStatus = NewType('RestartRequiredStatus', bool)