Initial creation of endpoint to send messages to public reporters

This commit is contained in:
Eli Ribble 2026-03-15 22:38:36 +00:00
parent 9707e8793b
commit cc95c38ab5
No known key found for this signature in database
12 changed files with 240 additions and 20 deletions

10
platform/text/report.go Normal file
View file

@ -0,0 +1,10 @@
package text
import (
"context"
//"github.com/Gleipnir-Technology/nidus-sync/platform/types"
)
func ReportMessage(ctx context.Context, user_id int32, report_id, destination, message string) (*int32, error) {
return nil, nil
}