mirror of
https://github.com/actions/runner.git
synced 2025-12-18 00:07:08 +00:00
14 lines
341 B
C#
14 lines
341 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace GitHub.DistributedTask.Logging
|
|
{
|
|
internal interface ISecret
|
|
{
|
|
/// <summary>
|
|
/// Returns one item (start, length) for each match found in the input string.
|
|
/// </summary>
|
|
IEnumerable<ReplacementPosition> GetPositions(String input);
|
|
}
|
|
}
|