mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
934 B
32 lines
934 B
// ==========================================================================
|
|
// Squidex Headless CMS
|
|
// ==========================================================================
|
|
// Copyright (c) Squidex UG (haftungsbeschraenkt)
|
|
// All rights reserved. Licensed under the MIT license.
|
|
// ==========================================================================
|
|
|
|
using CommandDotNet;
|
|
using CommandDotNet.FluentValidation;
|
|
|
|
namespace Squidex.Translator
|
|
{
|
|
public static class Program
|
|
{
|
|
public static int Main(string[] args)
|
|
{
|
|
try
|
|
{
|
|
var appRunner =
|
|
new AppRunner<Commands>()
|
|
.UseFluentValidation(true);
|
|
|
|
return appRunner.Run(args);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
Console.WriteLine("ERROR: {0}", ex);
|
|
return -1;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|