[][src]Attribute Macro gfaas::remote_fn

#[remote_fn]

The bread and butter of this crate.

Specifying custom Golem datadir and budget

It is possible, via the attribute, to specify a custom Golem datadir location and budget

This example is not tested
use gfaas::remote_fn;

#[remote_fn(
    datadir = "/Users/kubkon/golem/datadir",
    budget = 100,
)]
fn hello(input: String) -> String;