main
1using System;
2
3namespace gorilla.migrations
4{
5 public class HelpCommand : ConsoleCommand
6 {
7 public void run_against(ConsoleArguments item)
8 {
9 System.Console.Out.WriteLine("Please provide the correct arguments");
10 }
11
12 public bool can_handle(ConsoleArguments arguments)
13 {
14 throw new NotImplementedException();
15 }
16 }
17}