How to properly bring in a module and use its namespace

Final post summarizing the solution:
To include local code to be able to use a local module, you need to use
push!(LOAD_PATH, “”);
If you try to use “./” or pwd() as the directory to include, it will dependent on where you call the julia file from. This is bad. Instead, use

__DIR__

which is a macro to get the location of the calling function. Using this will allow your code to be called from anywhere.

Thank you to everyone who helped me!