mirror of
https://github.com/status-im/status-go.git
synced 2025-02-20 02:38:13 +00:00
10 lines
178 B
Go
10 lines
178 B
Go
|
package protocol
|
||
|
|
||
|
// ID is an identifier used to write protocol headers in streams.
|
||
|
type ID string
|
||
|
|
||
|
// These are reserved protocol.IDs.
|
||
|
const (
|
||
|
TestingID ID = "/p2p/_testing"
|
||
|
)
|