- miscellaneous small fixes
[reactos.git] / irc / TechBot / TechBot.Commands.Common / SvnCommand.cs
1 using System;
2
3 using TechBot.Library;
4
5 namespace TechBot.Commands.Common
6 {
7 [Command("svn", Help = "!svn" , Description="Where the ROS SVN repository is located")]
8 public class SvnCommand : Command
9 {
10 private string m_SvnRoot;
11
12 public SvnCommand()
13 {
14 m_SvnRoot = Settings.Default.SVNRoot;
15 }
16
17 public override void ExecuteCommand()
18 {
19 Say("svn co {0}", m_SvnRoot);
20 }
21 }
22 }