commit 6c989594929616109288044c601a50caac47775c Author: Tristan B. Kildaire Date: Sat Oct 29 18:04:00 2022 +0200 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..41a82c2 --- /dev/null +++ b/.gitignore @@ -0,0 +1,15 @@ +.dub +docs.json +__dummy.html +docs/ +/birchwood +birchwood.so +birchwood.dylib +birchwood.dll +birchwood.a +birchwood.lib +birchwood-test-* +*.exe +*.o +*.obj +*.lst diff --git a/dub.json b/dub.json new file mode 100644 index 0000000..2bc93d5 --- /dev/null +++ b/dub.json @@ -0,0 +1,13 @@ +{ + "authors": [ + "Tristan B. V. Kildaire" + ], + "copyright": "Copyright © 2022, Tristan B. V. Kildaire", + "dependencies": { + "eventy": "~>0.2.5" + }, + "targetType": "library", + "description": "A straight-forward IRC library for D programmers", + "license": "proprietary", + "name": "birchwood" +} \ No newline at end of file diff --git a/logo.png b/logo.png new file mode 100644 index 0000000..e239ec9 Binary files /dev/null and b/logo.png differ diff --git a/logo.svg b/logo.svg new file mode 100644 index 0000000..f8e42b5 --- /dev/null +++ b/logo.svg @@ -0,0 +1,142 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/source/app.d b/source/app.d new file mode 100644 index 0000000..c3eec7f --- /dev/null +++ b/source/app.d @@ -0,0 +1,6 @@ +import std.stdio; + +void main() +{ + writeln("Edit source/app.d to start your project."); +}