kunt

golang IRC bot
git clone git://git.2f30.org/kunt
Log | Files | Refs | LICENSE

commit 0485cf1d0cf2d38035625686cb858a8ab5eddd40
parent 701eb4d0cf266ace9ebb0adbc0f95b9b89275077
Author: sin <sin@2f30.org>
Date:   Thu,  9 May 2013 14:32:27 +0100

add copyright to files

Diffstat:
Msrc/games/games.go | 4++++
Msrc/games/hangman.go | 4++++
Msrc/irc/events.go | 4++++
Msrc/irc/irc.go | 4++++
Msrc/irc/message.go | 4++++
Msrc/irc/utils.go | 4++++
Msrc/kunt/kunt.go | 4++++
Msrc/mapfs/blowfish.go | 4++++
Msrc/mapfs/mapfs.go | 4++++
Msrc/mapfs/plain.go | 4++++
10 files changed, 40 insertions(+), 0 deletions(-)

diff --git a/src/games/games.go b/src/games/games.go @@ -1,3 +1,7 @@ +// Copyright 2013 TLH and dsp. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + package games import ( diff --git a/src/games/hangman.go b/src/games/hangman.go @@ -1,3 +1,7 @@ +// Copyright 2013 TLH and dsp. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + package games import ( diff --git a/src/irc/events.go b/src/irc/events.go @@ -1,3 +1,7 @@ +// Copyright 2013 TLH and dsp. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + package irc import ( diff --git a/src/irc/irc.go b/src/irc/irc.go @@ -1,3 +1,7 @@ +// Copyright 2013 TLH and dsp. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + package irc import ( diff --git a/src/irc/message.go b/src/irc/message.go @@ -1,3 +1,7 @@ +// Copyright 2013 TLH and dsp. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + package irc import ( diff --git a/src/irc/utils.go b/src/irc/utils.go @@ -1,3 +1,7 @@ +// Copyright 2013 TLH and dsp. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + package irc import ( diff --git a/src/kunt/kunt.go b/src/kunt/kunt.go @@ -1,3 +1,7 @@ +// Copyright 2013 TLH and dsp. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + package main import ( diff --git a/src/mapfs/blowfish.go b/src/mapfs/blowfish.go @@ -1,3 +1,7 @@ +// Copyright 2013 TLH and dsp. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + package mapfs import ( diff --git a/src/mapfs/mapfs.go b/src/mapfs/mapfs.go @@ -1,3 +1,7 @@ +// Copyright 2013 TLH and dsp. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + // Simple fs backed up dictionary implementation package mapfs diff --git a/src/mapfs/plain.go b/src/mapfs/plain.go @@ -1,3 +1,7 @@ +// Copyright 2013 TLH and dsp. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + package mapfs import (