12 lines
301 B
Plaintext
12 lines
301 B
Plaintext
|
|
/// This interface provides a value-export of the default network handle..
|
|
@since(version = 0.2.0)
|
|
interface instance-network {
|
|
@since(version = 0.2.0)
|
|
use network.{network};
|
|
|
|
/// Get a handle to the default network.
|
|
@since(version = 0.2.0)
|
|
instance-network: func() -> network;
|
|
}
|