Added a sort of welcome message
This commit is contained in:
parent
49f8e13650
commit
ac06d4157a
1 changed files with 7 additions and 0 deletions
|
@ -20,6 +20,13 @@ namespace Noikoio.RegexBot
|
||||||
|
|
||||||
internal RegexBot()
|
internal RegexBot()
|
||||||
{
|
{
|
||||||
|
// Welcome message
|
||||||
|
string name = nameof(RegexBot);
|
||||||
|
string sv = System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString(3);
|
||||||
|
Logger.GetLogger(name)
|
||||||
|
.Invoke($"{name} v{sv} - https://github.com/Noikoio/RegexBot")
|
||||||
|
.Wait();
|
||||||
|
|
||||||
// Load configuration
|
// Load configuration
|
||||||
_config = new Configuration(this);
|
_config = new Configuration(this);
|
||||||
if (!_config.LoadInitialConfig())
|
if (!_config.LoadInitialConfig())
|
||||||
|
|
Loading…
Reference in a new issue