Fix godoc a bit.

configurable-file-paths
Robert Gerus 2015-11-16 20:25:18 +01:00
parent 3f389ea843
commit 0598ee7a91
11 changed files with 22 additions and 11 deletions

View File

@ -2,8 +2,6 @@
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
// Package bot file channeljoin.go contains channeljoin callback which joins
// configured IRC channels on successful connection
package bot
import (

View File

@ -2,7 +2,6 @@
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
// Package bot file dispatcher.go - main file for this package
package bot
import (

7
bot/doc.go Normal file
View File

@ -0,0 +1,7 @@
// Copyright 2015 Robert S. Gerus. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
// Bot bot contains gorepost Bot implementation. Mostly a bunch of incoming irc
// event handlers. Might make it protocol-agnostic sometime in the future.
package bot

View File

@ -2,8 +2,6 @@
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
// Package bot file invite contains invite callback implementation which joins
// channels to which bot is invited.
package bot
import (

View File

@ -2,7 +2,6 @@
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
// Package bot file msgping.go contains a simple "ping-pong" style callback
package bot
import (

View File

@ -2,8 +2,6 @@
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
// Package bot file pingpong.go contains a callback handling IRC server PING
// command handler.
package bot
import (

View File

@ -2,7 +2,6 @@
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
// Package config is a hiera-inspired configuration library.
package config
import (

6
config/doc.go Normal file
View File

@ -0,0 +1,6 @@
// Copyright 2015 Robert S. Gerus. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
// Package config is a hiera-inspired configuration library.
package config

View File

@ -1,6 +1,8 @@
// Copyright 2015 Robert S. Gerus. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
// Gorepost is an overengineered IRC bot that i use for learning Go.
package main
import (

7
irc/doc.go Normal file
View File

@ -0,0 +1,7 @@
// Copyright 2015 Robert S. Gerus. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
// Package irc handles IRC connection handling and message parsing/unparsing
// primitives.
package irc

View File

@ -2,8 +2,6 @@
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
// Package irc handles IRC connection handling and message parsing/unparsing
// primitives.
package irc
import (