Skip to content

ericsalerno/goirc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

goirc

Teaching myself go. This is (will be) an attempt at building a super simple irc bot in golang.

Example

c := goirc.Configuration{}
c.Server = "irc.someserver.com"
c.Port = 6667
c.Nickname = "bot"
c.RealName = "justabot"
c.Channel = "#channel"
c.Timeout = 3
c.Debug = true
c.Identd = false

b := goirc.Bot{}
b.Connect(c)

About

A super simple irc "bot" written in golang.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages