renaming filenames

This commit is contained in:
Jason Bou Kheir
2020-04-22 19:32:21 -07:00
parent 6674b693ea
commit 5e7dbfaec8
8 changed files with 11 additions and 11 deletions

View File

@@ -1,4 +1,4 @@
# FirewallDaemon
# SystemEngine
**TODO: Add description**

View File

@@ -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
"""

View File

@@ -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

View File

@@ -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