1
0
Fork 0
mirror of https://github.com/reactos/reactos.git synced 2025-05-02 04:05:56 +00:00
reactos/irc/TechBot/TechBot.Commands.Common/SvnCommand.cs

23 lines
409 B
C#
Raw Normal View History

using System;
using TechBot.Library;
namespace TechBot.Commands.Common
{
[Command("svn", Help = "!svn" , Description="Where the ROS SVN repository is located")]
public class SvnCommand : Command
{
private string m_SvnRoot;
public SvnCommand()
{
m_SvnRoot = Settings.Default.SVNRoot;
}
public override void ExecuteCommand()
{
Say("svn co {0}", m_SvnRoot);
}
}
}