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