diff options
| author | 2026-03-28 18:16:05 +0000 | |
|---|---|---|
| committer | 2026-03-28 18:16:05 +0000 | |
| commit | e75510d130915c212566865ab070c4294c804eb9 (patch) | |
| tree | a8d5ff5dd1616264546b8f6f1b1b4672a62084a3 /network/receivepack/service/service.go | |
| parent | format/packfile/ingest: Update docs (diff) | |
| signature | No signature | |
network/receivepack: Update docs v0.1.124
Diffstat (limited to 'network/receivepack/service/service.go')
| -rw-r--r-- | network/receivepack/service/service.go | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/network/receivepack/service/service.go b/network/receivepack/service/service.go index a57fd354..0538cf73 100644 --- a/network/receivepack/service/service.go +++ b/network/receivepack/service/service.go @@ -1,16 +1,13 @@ package service // Service executes protocol-independent receive-pack requests. -// -// Service borrows all dependencies supplied in Options. type Service struct { opts Options } // New creates one receive-pack service. // -// The returned service borrows opts and does not take ownership of any stores, -// roots, hooks, or I/O endpoints reachable through it. +// Labels: Deps-Borrowed. func New(opts Options) *Service { return &Service{opts: opts} } |
