summaryrefslogtreecommitdiff
path: root/lib/lsg/icecast_agent.ex
diff options
context:
space:
mode:
authorJordan Bracco <href@random.sh>2022-12-20 00:21:54 +0000
committerJordan Bracco <href@random.sh>2022-12-20 19:29:41 +0100
commit2d83df8b32bff7f0028923bb5b64dc0b55f20d03 (patch)
tree1207e67b5b15f540963db05e7be89f3ca950e724 /lib/lsg/icecast_agent.ex
parentNola rename, the end. pt 6. Refs T77. (diff)
Nola rename: The Big Move, Refs T77
Diffstat (limited to 'lib/lsg/icecast_agent.ex')
-rw-r--r--lib/lsg/icecast_agent.ex17
1 files changed, 0 insertions, 17 deletions
diff --git a/lib/lsg/icecast_agent.ex b/lib/lsg/icecast_agent.ex
deleted file mode 100644
index 8a3a72b..0000000
--- a/lib/lsg/icecast_agent.ex
+++ /dev/null
@@ -1,17 +0,0 @@
-defmodule Nola.IcecastAgent do
- use Agent
-
- def start_link() do
- Agent.start_link(fn -> nil end, name: __MODULE__)
- end
-
- def update(stats) do
- Agent.update(__MODULE__, fn(_old) -> stats end)
- end
-
- def get do
- Agent.get(__MODULE__, fn(stats) -> stats end)
- end
-
-end
-