Files
codeql/csharp/extractor/Semmle.Extraction.CSharp.Driver/Driver.cs
2022-08-31 16:57:59 +02:00

20 lines
412 B
C#

using System;
using System.Text.RegularExpressions;
using System.Collections.Generic;
namespace Semmle.Extraction.CSharp
{
/// <summary>
/// A command-line driver for the extractor.
/// </summary>
public static class Driver
{
public static int Main(string[] args)
{
Extractor.SetInvariantCulture();
return (int)Extractor.Run(args);
}
}
}