regen
Some checks failed
test / test (push) Failing after 1m40s

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
This commit is contained in:
2025-01-14 19:02:57 +03:00
parent 415b232977
commit 356e20440b
38 changed files with 92 additions and 72 deletions

View File

@@ -98,7 +98,6 @@ func RegisterGithubServer(s server.Server, sh GithubServer, opts ...server.Handl
github
}
h := &githubServer{sh}
var nopts []server.HandlerOption
nopts = append(nopts, v3.HandlerEndpoints(GithubServerEndpoints))
return s.Handle(s.NewHandler(&Github{h}, append(nopts, opts...)...))
opts = append(opts, v3.HandlerEndpoints(GithubServerEndpoints))
return s.Handle(s.NewHandler(&Github{h}, opts...))
}