This commit is contained in:
Anthony Mineo 2021-10-06 17:55:39 -04:00
commit 3b22db761b
12 changed files with 592 additions and 0 deletions

16
lib/t2_server_query.ex Normal file
View file

@ -0,0 +1,16 @@
defmodule T2ServerQuery do
@moduledoc """
Documentation for `T2ServerQuery`.
"""
require Logger
# Just a simple debug logging util
def log(thing_to_log) do
Logger.info(inspect thing_to_log)
IO.puts "\n____________________________________________\n"
thing_to_log
end
end