-module(worm). -compile([no_auto_import, nowarn_unused_vars, nowarn_unused_function, nowarn_nomatch]). -export([persist/1]). -spec persist(fun(() -> GOS)) -> GOS. persist(Generator) -> worm_ffi:persist(Generator).