File: Console.cs
Web Access
Project: src\src\Microsoft.ML.Console\Microsoft.ML.Console.csproj (MML)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
 
namespace Microsoft.ML.Tools.Console
{
    public static class Console
    {
        public static int Main(string[] args) => Maml.Main(args);
    }
}