FastGithub/FastGithub.Scanner/GithubContextHashSet.cs
2021-06-16 00:14:33 +08:00

10 lines
195 B
C#

using System.Collections.Generic;
namespace FastGithub.Scanner
{
sealed class GithubContextHashSet : HashSet<GithubContext>
{
public readonly object SyncRoot = new();
}
}