Files
coder/coderd/healthcheck/websocket.go
2023-04-18 15:52:00 -05:00

13 lines
182 B
Go

package healthcheck
import (
"context"
"net/url"
)
type WebsocketReport struct{}
func (*WebsocketReport) Run(ctx context.Context, accessURL *url.URL) {
_, _ = ctx, accessURL
}