Packages

This is an Elixir library for TrueFace AI

Current section

Files

Jump to
tru_face lib tru_face.ex
Raw

lib/tru_face.ex

defmodule TruFace do
use Application
def start(_type, _args) do
import Supervisor.Spec, warn: false
children = [
worker(TruFace.Workers.Detective, []),
]
opts = [strategy: :one_for_one, name: TruFace.Supervisor]
Supervisor.start_link(children, opts)
end
end