10 lines
195 B
C#
10 lines
195 B
C#
using System.Collections.Generic;
|
|
|
|
namespace FastGithub.Scanner
|
|
{
|
|
sealed class GithubContextHashSet : HashSet<GithubContext>
|
|
{
|
|
public readonly object SyncRoot = new();
|
|
}
|
|
}
|