mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
14 lines
272 B
C#
14 lines
272 B
C#
namespace Semmle.Extraction.CSharp
|
|
{
|
|
/// <summary>
|
|
/// A command-line driver for the extractor.
|
|
/// </summary>
|
|
public class Driver
|
|
{
|
|
public static int Main(string[] args)
|
|
{
|
|
return (int)Extractor.Run(args);
|
|
}
|
|
}
|
|
}
|