Packages

Add Zero Trust Authentication (ZTA) to web apps running in your private cloud

Current section

Files

Jump to
nimble_zta lib nimble_zta application.ex
Raw

lib/nimble_zta/application.ex

defmodule NimbleZTA.Application do
@moduledoc false
use Application
def start(_type, _args) do
NimbleZTA.init()
Supervisor.start_link([], strategy: :one_for_one)
end
end