kopia lustrzana https://github.com/glidernet/ogn-python
10 wiersze
158 B
Python
10 wiersze
158 B
Python
![]() |
import enum
|
||
|
|
||
|
|
||
|
class SenderInfoOrigin(enum.Enum):
|
||
|
# lower number == more trustworthy
|
||
|
USER_DEFINED = 0
|
||
|
OGN_DDB = 1
|
||
|
FLARMNET = 2
|
||
|
UNKNOWN = 3
|