Packages

Multi-surface application runtime for Elixir. One TEA module renders to terminal, browser (LiveView), SSH, and MCP (agents). 30+ widgets, flexbox + CSS grid, AI agent runtime, distributed swarm with CRDTs, time-travel debugging, session recording, sandboxed REPL, and agentic commerce.

Current section

Files

Jump to
raxol lib raxol repo.ex
Raw

lib/raxol/repo.ex

defmodule Raxol.Repo do
@moduledoc """
Repository module for Raxol.
Currently a stub as Raxol doesn't use Ecto database operations.
"""
@doc """
Checkout a database connection for testing.
This is a stub implementation.
"""
def checkout(_func) do
{:ok, :no_op}
end
end