init nim files

This commit is contained in:
array-in-a-matrix 2024-08-21 14:46:19 -04:00
parent edea29ea5a
commit d3e4e0fd88
30 changed files with 51 additions and 0 deletions

12
cytoplasm.nimble Normal file
View file

@ -0,0 +1,12 @@
# Package
version = "0.1.0"
author = "Array in a Matrix"
description = "Nim bindings for Cytoplasm"
license = "MIT"
srcDir = "src"
# Dependencies
requires "nim >= 2.0.4"

26
src/cytoplasm.nim Normal file
View file

@ -0,0 +1,26 @@
import Args.nim
import Base64.nim
import Cytoplasm.nim
import Graph.nim
import HeaderParser.nim
import HttpClient.nim
import HttpServer.nim
import Json.nim
import Memory.nim
import Rand.nim
import Sha.nim
import Stream.nim
import Uri.nim
import Array.nim
import Cron.nim
import Db.nim
import HashMap.nim
import Http.nim
import HttpRouter.nim
import Io.nim
import Log.nim
import Queue.nim
import Runtime.nim
import Str.nim
import Tls.nim
import Util.nim

0
src/cytoplasm/Args.nim Normal file
View file

0
src/cytoplasm/Array.nim Normal file
View file

0
src/cytoplasm/Base64.nim Normal file
View file

0
src/cytoplasm/Cron.nim Normal file
View file

View file

0
src/cytoplasm/Db.nim Normal file
View file

0
src/cytoplasm/Graph.nim Normal file
View file

View file

View file

0
src/cytoplasm/Http.nim Normal file
View file

View file

View file

View file

0
src/cytoplasm/Io.nim Normal file
View file

0
src/cytoplasm/Json.nim Normal file
View file

0
src/cytoplasm/Log.nim Normal file
View file

0
src/cytoplasm/Memory.nim Normal file
View file

0
src/cytoplasm/Queue.nim Normal file
View file

0
src/cytoplasm/Rand.nim Normal file
View file

View file

0
src/cytoplasm/Sha.nim Normal file
View file

0
src/cytoplasm/Str.nim Normal file
View file

0
src/cytoplasm/Stream.nim Normal file
View file

0
src/cytoplasm/Tls.nim Normal file
View file

0
src/cytoplasm/Uri.nim Normal file
View file

0
src/cytoplasm/Util.nim Normal file
View file

1
tests/config.nims Normal file
View file

@ -0,0 +1 @@
switch("path", "$projectDir/../src")

12
tests/test1.nim Normal file
View file

@ -0,0 +1,12 @@
# This is just an example to get you started. You may wish to put all of your
# tests into a single file, or separate them into multiple `test1`, `test2`
# etc. files (better names are recommended, just make sure the name starts with
# the letter 't').
#
# To run these tests, simply execute `nimble test`.
#import unittest
#import cytoplasm
#test "can add":
# check add(5, 5) == 10