1package errortracking
2
3// Capture reports an error to the error reporting service.
4func Capture(err error, opts ...CaptureOption) {
5	DefaultTracker().Capture(err, opts...)
6}
7