X-Git-Url: http://www.git.cypherpunks.ru/?a=blobdiff_plain;f=goircd.go;h=deb6e3542feca9d32a1f494f3ffefdb5f0415403;hb=def58d0f4944397faa8cdd4a9cf3515125e0b548;hp=240f0e6eaf49431bde8d00cfb587dca1a48ae0ae;hpb=964a1bf9dbe211e21cc093001caa8962d513d513;p=goircd.git diff --git a/goircd.go b/goircd.go index 240f0e6..deb6e35 100644 --- a/goircd.go +++ b/goircd.go @@ -1,6 +1,6 @@ /* goircd -- minimalistic simple Internet Relay Chat (IRC) server -Copyright (C) 2014-2018 | wn Sergey Matveev +Copyright (C) 2014-2020 Sergey Matveev This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -28,8 +28,9 @@ import ( "strings" ) +const Version = "1.8.2" + var ( - version string hostname = flag.String("hostname", "localhost", "Hostname") bind = flag.String("bind", ":6667", "Address to bind to") motd = flag.String("motd", "", "Path to MOTD file") @@ -71,7 +72,7 @@ func Run() { log.Println(*logdir, "logger initialized") } - log.Println("goircd " + version + " is starting") + log.Println("goircd " + Version + " is starting") if *statedir == "" { // Dummy statekeeper go func() {