From ced498821e6c8b4e4705ebc3ed886ce949d0e323 Mon Sep 17 00:00:00 2001 From: treeform Date: Thu, 19 Nov 2020 18:45:26 -0800 Subject: [PATCH] First commit --- LICENSE | 2 +- nimtemplate.nimble | 8 -------- src/nimtemplate.nim | 3 --- src/nimtemplate/common.nim | 1 - tests/test.nim | 2 +- 5 files changed, 2 insertions(+), 14 deletions(-) delete mode 100644 nimtemplate.nimble delete mode 100644 src/nimtemplate.nim delete mode 100644 src/nimtemplate/common.nim diff --git a/LICENSE b/LICENSE index 9c7299a..5621fce 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2020 Author +Copyright (c) 2020 Andre von Houck and Ryan Oldenburg 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: diff --git a/nimtemplate.nimble b/nimtemplate.nimble deleted file mode 100644 index bd72628..0000000 --- a/nimtemplate.nimble +++ /dev/null @@ -1,8 +0,0 @@ -version = "0.0.0" -author = "Your name" -description = "Description of your library" -license = "MIT" - -srcDir = "src" - -requires "nim >= 1.2.2" diff --git a/src/nimtemplate.nim b/src/nimtemplate.nim deleted file mode 100644 index 5fcd576..0000000 --- a/src/nimtemplate.nim +++ /dev/null @@ -1,3 +0,0 @@ -## Public interface to you library. - -import nimtemplate/common diff --git a/src/nimtemplate/common.nim b/src/nimtemplate/common.nim deleted file mode 100644 index 869f4b5..0000000 --- a/src/nimtemplate/common.nim +++ /dev/null @@ -1 +0,0 @@ -## Add private variables or functions here that you don't want to export. diff --git a/tests/test.nim b/tests/test.nim index 41fa755..3f63dd0 100644 --- a/tests/test.nim +++ b/tests/test.nim @@ -1,3 +1,3 @@ ## Put your tests here. -import nimtemplate +import pixie