├── .github └── workflows │ ├── build.yml │ └── docs.yml ├── .gitignore ├── LICENSE ├── README.md ├── examples └── example.nim ├── nimtemplate.nimble ├── src ├── nimtemplate.nim └── nimtemplate │ └── common.nim └── tests ├── config.nims └── test.nim /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/nimtemplate/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/nimtemplate/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/nimtemplate/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/nimtemplate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/nimtemplate/HEAD/README.md -------------------------------------------------------------------------------- /examples/example.nim: -------------------------------------------------------------------------------- 1 | ## Include an example on how to use your library 2 | -------------------------------------------------------------------------------- /nimtemplate.nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/nimtemplate/HEAD/nimtemplate.nimble -------------------------------------------------------------------------------- /src/nimtemplate.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/nimtemplate/HEAD/src/nimtemplate.nim -------------------------------------------------------------------------------- /src/nimtemplate/common.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/nimtemplate/HEAD/src/nimtemplate/common.nim -------------------------------------------------------------------------------- /tests/config.nims: -------------------------------------------------------------------------------- 1 | --path:"../src" 2 | -------------------------------------------------------------------------------- /tests/test.nim: -------------------------------------------------------------------------------- 1 | ## Put your tests here. 2 | 3 | import nimtemplate 4 | --------------------------------------------------------------------------------