Skip to content

endpoint/client.go: Remove leftover docs from Handler #130

endpoint/client.go: Remove leftover docs from Handler

endpoint/client.go: Remove leftover docs from Handler #130

Workflow file for this run

name: Go
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v6
- name: Set up Go 1.25
uses: actions/setup-go@v6
with:
go-version: '1.25'
- name: Vet
run: go vet ./...
- name: Staticcheck
run: |
go install honnef.co/go/tools/cmd/staticcheck@latest
staticcheck ./...
- name: Test
run: go test ./...