diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f2dd955 --- /dev/null +++ b/.gitignore @@ -0,0 +1,12 @@ +# Binaries for programs and plugins +*.exe +*.exe~ +*.dll +*.so +*.dylib + +# Test binary, built with `go test -c` +*.test + +# Output of the go coverage tool, specifically when used with LiteIDE +*.out diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..46b741c --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,18 @@ +Copyright 2021 Tyler Goffinet + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/commands/commands.go b/src/commands/commands.go similarity index 100% rename from commands/commands.go rename to src/commands/commands.go diff --git a/commands/commands_test.go b/src/commands/commands_test.go similarity index 100% rename from commands/commands_test.go rename to src/commands/commands_test.go diff --git a/commands/help_command.go b/src/commands/help_command.go similarity index 100% rename from commands/help_command.go rename to src/commands/help_command.go diff --git a/commands/help_setup.go b/src/commands/help_setup.go similarity index 100% rename from commands/help_setup.go rename to src/commands/help_setup.go diff --git a/commands/indict_command.go b/src/commands/indict_command.go similarity index 100% rename from commands/indict_command.go rename to src/commands/indict_command.go diff --git a/commands/indict_setup.go b/src/commands/indict_setup.go similarity index 100% rename from commands/indict_setup.go rename to src/commands/indict_setup.go diff --git a/commands/manuals/indict.go b/src/commands/manuals/indict.go similarity index 100% rename from commands/manuals/indict.go rename to src/commands/manuals/indict.go diff --git a/commands/manuals/law.go b/src/commands/manuals/law.go similarity index 100% rename from commands/manuals/law.go rename to src/commands/manuals/law.go diff --git a/commands/manuals/manuals.go b/src/commands/manuals/manuals.go similarity index 100% rename from commands/manuals/manuals.go rename to src/commands/manuals/manuals.go diff --git a/laws/laws.go b/src/laws/laws.go similarity index 100% rename from laws/laws.go rename to src/laws/laws.go diff --git a/laws/yaml.go b/src/laws/yaml.go similarity index 100% rename from laws/yaml.go rename to src/laws/yaml.go diff --git a/lawyer.go b/src/lawyer.go similarity index 100% rename from lawyer.go rename to src/lawyer.go diff --git a/trial/formatting.go b/src/trial/formatting.go similarity index 100% rename from trial/formatting.go rename to src/trial/formatting.go diff --git a/trial/trial.go b/src/trial/trial.go similarity index 100% rename from trial/trial.go rename to src/trial/trial.go diff --git a/trial/trial_test.go b/src/trial/trial_test.go similarity index 100% rename from trial/trial_test.go rename to src/trial/trial_test.go