Headless CMS and Content Managment Hub
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.
 
 
 
 
 

33 lines
948 B

// ==========================================================================
// Squidex Headless CMS
// ==========================================================================
// Copyright (c) Squidex UG (haftungsbeschraenkt)
// All rights reserved. Licensed under the MIT license.
// ==========================================================================
using System;
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;
}
}
}
}