helia-interface 0.1.2

The Helia API interface definitions and traits
Documentation

Helia Interface

The API defined by a Helia node

This crate provides the core interfaces and traits that define the Helia IPFS implementation.

Example

use helia_interface::Helia;

async fn do_something<H: Helia>(helia: H) {
    // use helia node functions here
}