├── .gitignore ├── README.md ├── simpledb.nimble ├── src └── simpledb.nim └── tests ├── config.nims └── tests.nim /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjv360/nim-simpledb/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjv360/nim-simpledb/HEAD/README.md -------------------------------------------------------------------------------- /simpledb.nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjv360/nim-simpledb/HEAD/simpledb.nimble -------------------------------------------------------------------------------- /src/simpledb.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjv360/nim-simpledb/HEAD/src/simpledb.nim -------------------------------------------------------------------------------- /tests/config.nims: -------------------------------------------------------------------------------- 1 | switch("path", "$projectDir/../src") -------------------------------------------------------------------------------- /tests/tests.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjv360/nim-simpledb/HEAD/tests/tests.nim --------------------------------------------------------------------------------