1
0
mirror of https://github.com/libp2p/go-libp2p-core.git synced 2025-04-01 13:40:08 +08:00
go-libp2p-core/protocol/id.go
2019-04-16 14:00:12 +01:00

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"
)