Openstatus
www.openstatus.dev
1package handlers
2
3import (
4 "net/http"
5
6 "github.com/openstatushq/openstatus/apps/checker/pkg/tinybird"
7)
8
9type Handler struct {
10 TbClient tinybird.Client
11 Secret string
12 CloudProvider string
13 Region string
14}
15
16// Authorization could be handle by middleware
17
18func NewHTTPClient() *http.Client {
19 return &http.Client{}
20}