min-report/handler/report.go

12 lines
197 B
Go
Raw Normal View History

2023-08-18 09:59:43 +00:00
package handler
import (
"context"
"github.com/huoxue1/min-report/pojo"
)
func Report(ctx context.Context, data *pojo.ReportData) (*pojo.CommonResp, error) {
return &pojo.CommonResp{}, nil
}