Packages

Core behaviours, utilities, events, config, accessibility, and plugin infrastructure for Raxol. Zero external runtime dependencies. Provides BaseManager, event system, plugin lifecycle, keyboard/focus management, and accessibility primitives.

Current section

Files

Jump to
raxol_core lib raxol core.ex
Raw

lib/raxol/core.ex

defmodule Raxol.Core do
@moduledoc """
Documentation for `Raxol.Core`.
"""
@doc """
Hello world.
## Examples
iex> Raxol.Core.hello()
:world
"""
def hello do
:world
end
end