hooch 0.1.6

A small async runtime that's been bootlegged for my projects.
Documentation
1
2
3
4
5
6
7
use std::{future::Future, path::Path};

use crate::fs::file::HoochFile;

pub trait OpenHooch {
    fn open_hooch(self, path: &Path) -> impl Future<Output = Result<HoochFile, std::io::Error>>;
}