libflo_func 0.1.1

A library for loading modules containing shared libs into libflo.
Documentation
use FuncMapper;

pub struct Payload {
    func_mapper: FuncMapper,
}

impl Payload {
    pub fn new(
        func_mapper: FuncMapper,
    ) -> Self {
        Payload {
            func_mapper: func_mapper,
        }
    }

    pub fn destructure(self) -> (FuncMapper) {
        self.func_mapper
    }
}