summaryrefslogtreecommitdiff
path: root/lib/Command.cs
blob: d73239f90b752d1b595b787155fd9c3e93bfea5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
namespace jive
{
  public interface Command
  {
    void run();
  }

  public interface Command<in T>
  {
    void run(T item);
  }
}