(ctx context.Context, report *entity.Report)
| 29 | // ReportRepo report repository |
| 30 | type ReportRepo interface { |
| 31 | AddReport(ctx context.Context, report *entity.Report) (err error) |
| 32 | GetReportListPage(ctx context.Context, query *schema.GetReportListPageDTO) ( |
| 33 | reports []*entity.Report, total int64, err error) |
| 34 | GetByID(ctx context.Context, id string) (report *entity.Report, exist bool, err error) |
no outgoing calls
no test coverage detected