mirror of
https://github.com/github/codeql.git
synced 2025-12-18 18:10:39 +01:00
20 lines
412 B
C#
20 lines
412 B
C#
using System;
|
|
using System.Text.RegularExpressions;
|
|
using System.Collections.Generic;
|
|
|
|
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);
|
|
}
|
|
}
|
|
}
|