mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
30 lines
611 B
C#
30 lines
611 B
C#
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Text;
|
||
|
|
||
|
namespace TechBot.Library
|
||
|
{
|
||
|
class SambaBugUrl : BugCommand
|
||
|
{
|
||
|
public SambaBugUrl(TechBotService techBot)
|
||
|
: base(techBot)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public override string[] AvailableCommands
|
||
|
{
|
||
|
get { return new string[] { "sambabug" }; }
|
||
|
}
|
||
|
|
||
|
protected override string BugUrl
|
||
|
{
|
||
|
get { return "https://bugzilla.samba.org/show_bug.cgi?id={0}"; }
|
||
|
}
|
||
|
|
||
|
public override string Help()
|
||
|
{
|
||
|
return "!sambabug <number>";
|
||
|
}
|
||
|
}
|
||
|
}
|