initial commit
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
using RTCSync.Options;
|
||||
|
||||
internal class Program
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
var dispatcher = new OptionDispatcher();
|
||||
dispatcher.Register(new ReadTimeOption());
|
||||
dispatcher.Register(new SetTimeOption());
|
||||
dispatcher.Register(new SyncTimeOption());
|
||||
dispatcher.Register(new ReadStatusOption());
|
||||
dispatcher.Execute(args);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user