using System;
using System.Collections.Generic;
using Wasmtime.Bindings;
namespace Wasmtime
{
///
/// The interface implemented by Wasmtime hosts.
///
public interface IHost
{
///
/// The that the host is bound to.
///
/// A host can only bind to one module instance at a time.
Instance Instance { get; set; }
}
}