Files
2018-10-10 14:40:52 +01:00

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