diff --git a/.gitignore b/.gitignore index 2758450..5e38f90 100644 --- a/.gitignore +++ b/.gitignore @@ -21,6 +21,18 @@ docs.json __dummy.html docs/ +# INTELLIJ +*.iml +.idea/* + # Code coverage *.lst +# IIRC +/iirc +iirc.so +iirc.dylib +iirc.dll +iirc.a +iirc.lib +iirc-test-* \ No newline at end of file diff --git a/dub.json b/dub.json deleted file mode 100644 index 90d3d55..0000000 --- a/dub.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "name": "iirc", - "targetName": "iirc", - "targetType": "executable", - "targetPath": "bin" -} \ No newline at end of file diff --git a/dub.sdl b/dub.sdl new file mode 100644 index 0000000..0426007 --- /dev/null +++ b/dub.sdl @@ -0,0 +1,4 @@ +name "iirc" +description "irc gateway for flashii chat" +authors "reemo" +license "proprietary" diff --git a/source/app.d b/source/app.d index 5d3cd9e..bbd7e81 100644 --- a/source/app.d +++ b/source/app.d @@ -1,8 +1,5 @@ import std.stdio; -void main(string[] args) { - writeln("Hello World!"); - writeln("Press enter..."); - readln(); +void main() { + writeln("woomy irl"); } - diff --git a/source/sock/irc.d b/source/sock/irc.d new file mode 100644 index 0000000..90069ff --- /dev/null +++ b/source/sock/irc.d @@ -0,0 +1 @@ +module sock.irc; diff --git a/source/sock/soch.d b/source/sock/soch.d new file mode 100644 index 0000000..aa28753 --- /dev/null +++ b/source/sock/soch.d @@ -0,0 +1 @@ +module sock.soch; diff --git a/source/sock/wsock.d b/source/sock/wsock.d new file mode 100644 index 0000000..500ae1b --- /dev/null +++ b/source/sock/wsock.d @@ -0,0 +1 @@ +module sock.wsock;