15 lines
353 B
Python
15 lines
353 B
Python
"""Static algorithm constants.
|
|
|
|
Runtime profile values such as `did`, `egid`, `api_st`, and token client salt
|
|
are intentionally kept out of this module. Use `core.captured_profile` for the
|
|
currently captured local sample values.
|
|
"""
|
|
|
|
from .sig import SIG_SALT
|
|
|
|
|
|
REWARD_SDK = "95147564-9763-4413-a937-6f0e3c12caf1"
|
|
|
|
|
|
__all__ = ["REWARD_SDK", "SIG_SALT"]
|