From 7f093b003edb1ed7a9a1d7dcce9c780de5b2cab4 Mon Sep 17 00:00:00 2001 From: Chris Sexton Date: Tue, 10 Dec 2013 18:37:07 -0500 Subject: [PATCH] Added AUTHORS file and info in all files. Thanks to https://github.com/eaburns/license --- AUTHORS | 1 + bot/bot.go | 2 ++ bot/handlers.go | 2 ++ bot/users.go | 2 ++ config/config.go | 2 ++ main.go | 2 ++ plugins/admin.go | 2 ++ plugins/beers.go | 2 ++ plugins/counter.go | 2 ++ plugins/dice.go | 2 ++ plugins/downtime.go | 2 ++ plugins/factoid.go | 2 ++ plugins/first.go | 2 ++ plugins/lisp.go | 2 ++ plugins/plugins.go | 2 ++ plugins/remember.go | 2 ++ plugins/skeleton.go | 2 ++ plugins/talker.go | 2 ++ plugins/twitter.go | 2 ++ plugins/webTemplates.go | 2 ++ plugins/your.go | 2 ++ version.go | 2 ++ 22 files changed, 43 insertions(+) create mode 100755 AUTHORS diff --git a/AUTHORS b/AUTHORS new file mode 100755 index 0000000..bcff7ee --- /dev/null +++ b/AUTHORS @@ -0,0 +1 @@ +Chris Sexton diff --git a/bot/bot.go b/bot/bot.go index e64959c..14da59c 100644 --- a/bot/bot.go +++ b/bot/bot.go @@ -1,3 +1,5 @@ +// © 2013 the AlePale Authors under the WTFPL. See AUTHORS for the list of authors. + package bot import ( diff --git a/bot/handlers.go b/bot/handlers.go index dc52638..f700ad8 100644 --- a/bot/handlers.go +++ b/bot/handlers.go @@ -1,3 +1,5 @@ +// © 2013 the AlePale Authors under the WTFPL. See AUTHORS for the list of authors. + package bot import ( diff --git a/bot/users.go b/bot/users.go index 8982f7e..ff38cd3 100644 --- a/bot/users.go +++ b/bot/users.go @@ -1,3 +1,5 @@ +// © 2013 the AlePale Authors under the WTFPL. See AUTHORS for the list of authors. + package bot import ( diff --git a/config/config.go b/config/config.go index 94e0f01..ce62557 100644 --- a/config/config.go +++ b/config/config.go @@ -1,3 +1,5 @@ +// © 2013 the AlePale Authors under the WTFPL. See AUTHORS for the list of authors. + package config import "encoding/json" diff --git a/main.go b/main.go index 440c80d..32d25df 100644 --- a/main.go +++ b/main.go @@ -1,3 +1,5 @@ +// © 2013 the AlePale Authors under the WTFPL. See AUTHORS for the list of authors. + package main import ( diff --git a/plugins/admin.go b/plugins/admin.go index 0047f6a..6595da2 100644 --- a/plugins/admin.go +++ b/plugins/admin.go @@ -1,3 +1,5 @@ +// © 2013 the AlePale Authors under the WTFPL. See AUTHORS for the list of authors. + package plugins import ( diff --git a/plugins/beers.go b/plugins/beers.go index d2ad670..67eac15 100644 --- a/plugins/beers.go +++ b/plugins/beers.go @@ -1,3 +1,5 @@ +// © 2013 the AlePale Authors under the WTFPL. See AUTHORS for the list of authors. + package plugins import ( diff --git a/plugins/counter.go b/plugins/counter.go index 53878dc..d1f471a 100644 --- a/plugins/counter.go +++ b/plugins/counter.go @@ -1,3 +1,5 @@ +// © 2013 the AlePale Authors under the WTFPL. See AUTHORS for the list of authors. + package plugins import ( diff --git a/plugins/dice.go b/plugins/dice.go index 5617e26..32c83b3 100644 --- a/plugins/dice.go +++ b/plugins/dice.go @@ -1,3 +1,5 @@ +// © 2013 the AlePale Authors under the WTFPL. See AUTHORS for the list of authors. + package plugins import "github.com/chrissexton/alepale/bot" diff --git a/plugins/downtime.go b/plugins/downtime.go index 97679b7..dec2f41 100644 --- a/plugins/downtime.go +++ b/plugins/downtime.go @@ -1,3 +1,5 @@ +// © 2013 the AlePale Authors under the WTFPL. See AUTHORS for the list of authors. + package plugins import "github.com/chrissexton/alepale/bot" diff --git a/plugins/factoid.go b/plugins/factoid.go index d8d5b6d..a54fd19 100644 --- a/plugins/factoid.go +++ b/plugins/factoid.go @@ -1,3 +1,5 @@ +// © 2013 the AlePale Authors under the WTFPL. See AUTHORS for the list of authors. + package plugins import ( diff --git a/plugins/first.go b/plugins/first.go index 6d24003..9d16a00 100644 --- a/plugins/first.go +++ b/plugins/first.go @@ -1,3 +1,5 @@ +// © 2013 the AlePale Authors under the WTFPL. See AUTHORS for the list of authors. + package plugins import ( diff --git a/plugins/lisp.go b/plugins/lisp.go index b35db48..b3511a5 100644 --- a/plugins/lisp.go +++ b/plugins/lisp.go @@ -1,3 +1,5 @@ +// © 2013 the AlePale Authors under the WTFPL. See AUTHORS for the list of authors. + package plugins import ( diff --git a/plugins/plugins.go b/plugins/plugins.go index 991def9..4398b4d 100644 --- a/plugins/plugins.go +++ b/plugins/plugins.go @@ -1,3 +1,5 @@ +// © 2013 the AlePale Authors under the WTFPL. See AUTHORS for the list of authors. + package plugins import "fmt" diff --git a/plugins/remember.go b/plugins/remember.go index da80901..7473153 100644 --- a/plugins/remember.go +++ b/plugins/remember.go @@ -1,3 +1,5 @@ +// © 2013 the AlePale Authors under the WTFPL. See AUTHORS for the list of authors. + package plugins import ( diff --git a/plugins/skeleton.go b/plugins/skeleton.go index aff1caf..91aee4e 100644 --- a/plugins/skeleton.go +++ b/plugins/skeleton.go @@ -1,3 +1,5 @@ +// © 2013 the AlePale Authors under the WTFPL. See AUTHORS for the list of authors. + package plugins import "github.com/chrissexton/alepale/bot" diff --git a/plugins/talker.go b/plugins/talker.go index 0871ad2..cc68189 100644 --- a/plugins/talker.go +++ b/plugins/talker.go @@ -1,3 +1,5 @@ +// © 2013 the AlePale Authors under the WTFPL. See AUTHORS for the list of authors. + package plugins import ( diff --git a/plugins/twitter.go b/plugins/twitter.go index d8b71c3..001e0cc 100644 --- a/plugins/twitter.go +++ b/plugins/twitter.go @@ -1,3 +1,5 @@ +// © 2013 the AlePale Authors under the WTFPL. See AUTHORS for the list of authors. + package plugins import ( diff --git a/plugins/webTemplates.go b/plugins/webTemplates.go index e15a2ea..48099be 100644 --- a/plugins/webTemplates.go +++ b/plugins/webTemplates.go @@ -1,3 +1,5 @@ +// © 2013 the AlePale Authors under the WTFPL. See AUTHORS for the list of authors. + package plugins // I hate this, but I'm creating strings of the templates to avoid having to diff --git a/plugins/your.go b/plugins/your.go index b7db249..a284eba 100644 --- a/plugins/your.go +++ b/plugins/your.go @@ -1,3 +1,5 @@ +// © 2013 the AlePale Authors under the WTFPL. See AUTHORS for the list of authors. + package plugins import ( diff --git a/version.go b/version.go index f469796..019f278 100644 --- a/version.go +++ b/version.go @@ -1,3 +1,5 @@ +// © 2013 the AlePale Authors under the WTFPL. See AUTHORS for the list of authors. + package main const Version = "0.81"