mirror of
https://github.com/aljazceru/python-nostr.git
synced 2025-12-19 15:24:19 +01:00
10 lines
190 B
Python
10 lines
190 B
Python
class ClientMessageType:
|
|
EVENT = "EVENT"
|
|
REQUEST = "REQ"
|
|
CLOSE = "CLOSE"
|
|
|
|
class RelayMessageType:
|
|
EVENT = "EVENT"
|
|
NOTICE = "NOTICE"
|
|
END_OF_STORED_EVENTS = "EOSE"
|
|
|