Initial commit
This commit is contained in:
commit
2acad2efe4
|
@ -0,0 +1,2 @@
|
|||
h3
|
||||
nimcache
|
|
@ -0,0 +1,18 @@
|
|||
h3
|
||||
==
|
||||
|
||||
Bizarre IRC bot. Do not be afraid.
|
||||
|
||||
The goal of this is to replace [`h`](https://git.xeserv.us/xena/h) with
|
||||
something that is different than Python.
|
||||
|
||||
Using Nim because WHY NOT.
|
||||
|
||||
Running
|
||||
-------
|
||||
|
||||
```console
|
||||
$ nimble build
|
||||
$ ./h3 --newConfig
|
||||
$ ./h3 h3.toml
|
||||
```
|
|
@ -0,0 +1,14 @@
|
|||
# Package
|
||||
|
||||
version = "0.1.0"
|
||||
author = "Christine Dodrill"
|
||||
description = "The h IRC bot, version 3"
|
||||
license = "MIT"
|
||||
srcDir = "src"
|
||||
bin = @["h3"]
|
||||
|
||||
# Dependencies
|
||||
|
||||
requires "nim >= 0.13.0", "irc"
|
||||
|
||||
switch "define", "ssl"
|
|
@ -0,0 +1 @@
|
|||
echo "h3h3"
|
Loading…
Reference in New Issue