Files
proton-bridge/pkg/pmapi/manager_report.go
2021-04-30 05:34:36 +02:00

13 lines
251 B
Go

package pmapi
import (
"context"
"errors"
)
// Report sends request as json or multipart (if has attachment).
func (m *manager) ReportBug(context.Context, ReportBugReq) error {
// FIXME(conman): Implement.
return errors.New("not implemented")
}