Openstatus www.openstatus.dev

🧹 other (#1006)

* 🧹

* ci: apply automated fixes

---------

Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>

authored by

Thibault Le Ouay
autofix-ci[bot]
and committed by
GitHub
dbcb51d8 7c889a52

-20
-2
apps/web/src/app/api/checker/cron/_cron.ts
··· 183 183 function generateUrl({ row }: { row: z.infer<typeof selectMonitorSchema> }) { 184 184 switch (row.jobType) { 185 185 case "http": 186 - // FIXME: remove this after the migration 187 - case "other": 188 186 return `https://openstatus-checker.fly.dev/checker/http?monitor_id=${row.id}`; 189 187 case "tcp": 190 188 return `https://openstatus-checker.fly.dev/checker/tcp?monitor_id=${row.id}`;
-2
packages/db/src/schema/monitors/constants.ts
··· 8 8 "udp", 9 9 "dns", 10 10 "ssl", 11 - // FIXME: remove this after the migration 12 - "other", 13 11 ] as const;
-16
temp/main.go
··· 1 - package main 2 - 3 - import "fmt" 4 - 5 - type Person struct { 6 - Test int 7 - Other string 8 - } 9 - 10 - func HelloVet() { 11 - fmt.Println("Hello Vet") 12 - 13 - return 14 - 15 - fmt.Println("This line will never be executed") 16 - }