mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 04:48:53 +00:00
17 lines
331 B
C#
17 lines
331 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Cosmos.Shell.Console.Commands {
|
|
public class FSTestCommand : ICommand {
|
|
public override string Name {
|
|
get {
|
|
return "fstest";
|
|
}
|
|
}
|
|
|
|
public override void Execute() {
|
|
System.Console.WriteLine ("Testing...");
|
|
}
|
|
}
|
|
}
|