mirror of
https://github.com/github/codeql.git
synced 2026-04-09 09:04:03 +02:00
10 lines
189 B
C#
10 lines
189 B
C#
using Semmle.Util.Logging;
|
|
|
|
namespace Semmle.Extraction.CSharp.DependencyFetching
|
|
{
|
|
public interface IProgressMonitor
|
|
{
|
|
void Log(Severity severity, string message);
|
|
}
|
|
}
|