BundleServer handles bundle operations.
| 15 | |
| 16 | // BundleServer handles bundle operations. |
| 17 | type BundleServer struct { |
| 18 | v1.UnimplementedBundleServer |
| 19 | |
| 20 | br storage.BundleReader |
| 21 | bw storage.BundleWriter |
| 22 | } |
| 23 | |
| 24 | func NewBundleServer( |
| 25 | br storage.BundleReader, |
nothing calls this directly
no outgoing calls
no test coverage detected