Files
2020-10-13 14:45:37 +02:00

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);
}
}
}