MCPcopy Create free account
hub / github.com/SignTools/SignTools / GetById

Method GetById

src/storage/job_resolver.go:99–104  ·  view source on GitHub ↗
(id string)

Source from the content-addressed store, hash-verified

97}
98
99func (r *JobResolver) GetById(id string) (*ReturnJob, bool) {
100 r.mu.Lock()
101 defer r.mu.Unlock()
102 job, ok := r.idToReturnJobMap[id]
103 return job, ok
104}
105
106func (r *JobResolver) GetByAppId(id string) (*ReturnJob, bool) {
107 r.mu.Lock()

Callers 4

jobResolverFunction · 0.45
uploadUnsignedAppFunction · 0.45
renderIndexFunction · 0.45
writeArchiveMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected