mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 10:18:54 +00:00
renaming filenames
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
# FirewallDaemon
|
||||
# SystemEngine
|
||||
|
||||
**TODO: Add description**
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
defmodule FirewallDaemon do
|
||||
defmodule SystemEngine do
|
||||
@moduledoc """
|
||||
Documentation for FirewallDaemon.
|
||||
Documentation for SystemEngine.
|
||||
"""
|
||||
|
||||
@doc """
|
||||
@@ -8,7 +8,7 @@ defmodule FirewallDaemon do
|
||||
|
||||
## Examples
|
||||
|
||||
iex> FirewallDaemon.hello()
|
||||
iex> SystemEngine.hello()
|
||||
:world
|
||||
|
||||
"""
|
||||
@@ -1,4 +1,4 @@
|
||||
defmodule FirewallDaemon.Application do
|
||||
defmodule SystemEngine.Application do
|
||||
# See https://hexdocs.pm/elixir/Application.html
|
||||
# for more information on OTP Applications
|
||||
@moduledoc false
|
||||
@@ -7,13 +7,13 @@ defmodule FirewallDaemon.Application do
|
||||
|
||||
def start(_type, _args) do
|
||||
children = [
|
||||
# Starts a worker by calling: FirewallDaemon.Worker.start_link(arg)
|
||||
# {FirewallDaemon.Worker, arg}
|
||||
# Starts a worker by calling: SystemEngine.Worker.start_link(arg)
|
||||
# {SystemEngine.Worker, arg}
|
||||
]
|
||||
|
||||
# See https://hexdocs.pm/elixir/Supervisor.html
|
||||
# for other strategies and supported options
|
||||
opts = [strategy: :one_for_one, name: FirewallDaemon.Supervisor]
|
||||
opts = [strategy: :one_for_one, name: SystemEngine.Supervisor]
|
||||
Supervisor.start_link(children, opts)
|
||||
end
|
||||
end
|
||||
@@ -1,9 +1,9 @@
|
||||
defmodule FirewallDaemon.MixProject do
|
||||
defmodule SystemEngine.MixProject do
|
||||
use Mix.Project
|
||||
|
||||
def project do
|
||||
[
|
||||
app: :firewall_daemon,
|
||||
app: :system_engine,
|
||||
version: "0.1.0",
|
||||
build_path: "../../_build",
|
||||
config_path: "../../config/config.exs",
|
||||
@@ -19,7 +19,7 @@ defmodule FirewallDaemon.MixProject do
|
||||
def application do
|
||||
[
|
||||
extra_applications: [:logger],
|
||||
mod: {FirewallDaemon.Application, []}
|
||||
mod: {SystemEngine.Application, []}
|
||||
]
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user