12 lines
197 B
Go
12 lines
197 B
Go
|
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
|
||
|
}
|