From f2e2073cd16aef296216b5b239e4732c07e53352 Mon Sep 17 00:00:00 2001 From: "15070724+qubitz@users.noreply.github.com" <15070724+qubitz@users.noreply.github.com> Date: Sun, 7 Mar 2021 13:21:17 -0800 Subject: [PATCH] Add and organize files for repo maintenance * Move source files into src to make room for source unrelated files * Add initial gitignore * Add license file --- .gitignore | 12 ++++++++++++ LICENSE.txt | 18 ++++++++++++++++++ {commands => src/commands}/commands.go | 0 {commands => src/commands}/commands_test.go | 0 {commands => src/commands}/help_command.go | 0 {commands => src/commands}/help_setup.go | 0 {commands => src/commands}/indict_command.go | 0 {commands => src/commands}/indict_setup.go | 0 {commands => src/commands}/manuals/indict.go | 0 {commands => src/commands}/manuals/law.go | 0 {commands => src/commands}/manuals/manuals.go | 0 {laws => src/laws}/laws.go | 0 {laws => src/laws}/yaml.go | 0 lawyer.go => src/lawyer.go | 0 {trial => src/trial}/formatting.go | 0 {trial => src/trial}/trial.go | 0 {trial => src/trial}/trial_test.go | 0 17 files changed, 30 insertions(+) create mode 100644 .gitignore create mode 100644 LICENSE.txt rename {commands => src/commands}/commands.go (100%) rename {commands => src/commands}/commands_test.go (100%) rename {commands => src/commands}/help_command.go (100%) rename {commands => src/commands}/help_setup.go (100%) rename {commands => src/commands}/indict_command.go (100%) rename {commands => src/commands}/indict_setup.go (100%) rename {commands => src/commands}/manuals/indict.go (100%) rename {commands => src/commands}/manuals/law.go (100%) rename {commands => src/commands}/manuals/manuals.go (100%) rename {laws => src/laws}/laws.go (100%) rename {laws => src/laws}/yaml.go (100%) rename lawyer.go => src/lawyer.go (100%) rename {trial => src/trial}/formatting.go (100%) rename {trial => src/trial}/trial.go (100%) rename {trial => src/trial}/trial_test.go (100%) 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