15 lines
217 B
Elixir
15 lines
217 B
Elixir
defmodule Ai.Application do
|
|
use Application
|
|
|
|
def start(_start_type, _start_args) do
|
|
children = [
|
|
Ai.Console
|
|
]
|
|
|
|
Supervisor.start_link(
|
|
children,
|
|
strategy: :one_for_one
|
|
)
|
|
end
|
|
end
|