289684b0f1
Added original source Fixed readme typo (I fat fingered your username again whoops) Fiddling with golang config
19 lines
287 B
Go
19 lines
287 B
Go
package main
|
|
|
|
import "fmt"
|
|
import "github.com/go-irc/irc"
|
|
import "github.com/namsral/flag"
|
|
|
|
func main() {
|
|
var pass string
|
|
flag.String(pass)
|
|
config := irc.ClientConfig {
|
|
Nick: "wat",
|
|
Pass: pass,
|
|
User: "wat",
|
|
Name: "wat",
|
|
Handler: testHandler
|
|
}
|
|
fmt.Println("Hello world")
|
|
}
|