mirror of
https://github.com/ipfs/kubo.git
synced 2026-03-02 06:47:51 +08:00
13 lines
251 B
Go
13 lines
251 B
Go
package corenet
|
|
|
|
// Corenet structure holds information on currently running streams/apps
|
|
type Corenet struct {
|
|
Apps AppRegistry
|
|
Streams StreamRegistry
|
|
}
|
|
|
|
// NewCorenet creates new Corenet struct
|
|
func NewCorenet() *Corenet {
|
|
return &Corenet{}
|
|
}
|