GameServer.Hooks.PluginManager.Plugin (GameServer v1.0.509)

A loaded plugin descriptor.

This is a runtime struct used by GameServer.Hooks.PluginManager to report which plugins were discovered and whether they successfully loaded and started.

Summary

Types

t()

@type t() :: %GameServer.Hooks.PluginManager.Plugin{
  app: atom(),
  ebin_paths: [String.t()],
  hooks_module: module() | nil,
  loaded_at: DateTime.t() | nil,
  modules: [module()],
  name: String.t(),
  status: :ok | {:error, term()},
  vsn: String.t() | nil
}