Add 'robocop' subdomain (#44)

This commit is contained in:
Patrick Stevens
2025-10-12 10:40:40 +01:00
committed by GitHub
parent 0986cfee52
commit f188ede756

View File

@@ -104,6 +104,7 @@ type WellKnownSubdomain =
| Grafana
| PureGym
| Whisper
| Robocop
override this.ToString () =
match this with
@@ -117,6 +118,7 @@ type WellKnownSubdomain =
| WellKnownSubdomain.WoodpeckerAgent -> "woodpecker-agent"
| WellKnownSubdomain.PureGym -> "puregym"
| WellKnownSubdomain.Whisper -> "whisper"
| WellKnownSubdomain.Robocop -> "robocop"
static member Parse (s : string) =
match s with
@@ -130,6 +132,7 @@ type WellKnownSubdomain =
| "grafana" -> WellKnownSubdomain.Grafana
| "puregym" -> WellKnownSubdomain.PureGym
| "whisper" -> WellKnownSubdomain.Whisper
| "robocop" -> WellKnownSubdomain.Robocop
| _ -> failwith $"Failed to deserialise: {s}"