Packages
Fast B-tree–backed token store for stateful sessions
Current section
Files
Jump to
Current section
Files
lib/application.ex
# This binding was generated automatically to ensure consistency across languages
# Generated using ChatGPT (GPT-5) from the canonical Ruby SDK
# API is stable and production-ready
defmodule CRUDJT.Application do
use Application
def start(_type, _args) do
children = []
opts = [strategy: :one_for_one, name: CRUDJT.Supervisor]
Supervisor.start_link(children, opts)
end
end