mirror of
https://github.com/coder/coder.git
synced 2025-07-06 15:41:45 +00:00
13 lines
182 B
Go
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
|
|
}
|