mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
26 lines
420 B
C#
26 lines
420 B
C#
namespace My.Qltest
|
|
{
|
|
|
|
public class TestSources
|
|
{
|
|
public string ExecuteQuery(string query)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
public string ReadEnv(string env)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
public string GetCustom(string s)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
public string GetCliArg(int i)
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
} |