forked from Silverfish/proton-bridge
13 lines
251 B
Go
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")
|
|
}
|