| 110 | } |
| 111 | |
| 112 | type service struct { |
| 113 | creator string |
| 114 | serve func(ctx context.Context) error |
| 115 | err error |
| 116 | mut sync.Mutex |
| 117 | } |
| 118 | |
| 119 | func (s *service) Serve(ctx context.Context) error { |
| 120 | s.mut.Lock() |
nothing calls this directly
no outgoing calls
no test coverage detected