wasmer-pack 0.7.1

A code generator that lets you treat WebAssembly modules like native dependencies.
Documentation
'''
{%- if description %}
{{description}}
{%- else %}
Bindings to {{package_name}} v{{version}}.
{%- endif %}
'''

# Generated by {{generator}}.

from wasmer import Store as _Store # type: ignore

{%- if commands %}
from .commands import Commands as _Commands
{%- endif %}
{%- if libraries %}
from .bindings import Bindings as _Bindings
{%- endif %}

__version__ = "{{version}}"

_store = _Store()

{%- if libraries %}
bindings = _Bindings(_store)
{%- endif %}
{%- if commands %}
commands = _Commands(_store)
{%- endif %}