mirror of
https://github.com/github/codeql.git
synced 2025-12-19 02:13:17 +01: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);
|
|
}
|
|
}
|