💾 Archived View for gemini.rmf-dev.com › repo › Vaati › gmiChat › files › a56053d9919bd8a4d3002e486f… captured on 2023-01-29 at 03:04:05. Gemini links have been rewritten to link to archived content
-=-=-=-=-=-=-
0 defmodule Gmichat.App do
1 use Application
2
3 def start(_type, _args) do
4 children = [
5 Gmichat.Repo,
6 ]
7 opts = [strategy: :one_for_one, name: Friends.Supervisor]
8 Supervisor.start_link(children, opts)
9 Gmichat.start()
10 Supervisor.start_link [], strategy: :one_for_one
11 end
12 end
13