Skip to content

Commit

Permalink
feat: make webhookconverter public (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
JamieMagee committed Oct 29, 2021
1 parent 874ff8a commit 85c9bf0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Octokit.Webhooks/Converter/WebhookConverter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@
using System.Linq;
using System.Text.Json;
using System.Text.Json.Serialization;
using JetBrains.Annotations;

internal class WebhookConverter<T> : JsonConverter<T>
[PublicAPI]
public class WebhookConverter<T> : JsonConverter<T>
where T : WebhookEvent
{
private readonly IDictionary<string, Type> types;
Expand Down

0 comments on commit 85c9bf0

Please sign in to comment.