mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
16 lines
325 B
C#
16 lines
325 B
C#
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);
|
|
}
|
|
}
|
|
}
|