2026-01-05 02:06:34 +00:00
|
|
|
package platform
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"github.com/Gleipnir-Technology/nidus-sync/db/models"
|
|
|
|
|
)
|
|
|
|
|
|
2026-01-06 22:23:59 +00:00
|
|
|
func MosquitoSourceQuery() ([]MosquitoSource, error) {
|
|
|
|
|
results := make([]MosquitoSource, 0)
|
|
|
|
|
return results, nil
|
2026-01-05 02:06:34 +00:00
|
|
|
}
|
|
|
|
|
|
2026-01-06 22:23:59 +00:00
|
|
|
func ServiceRequestQuery() (models.FieldseekerServicerequestSlice, error) {
|
2026-01-05 02:06:34 +00:00
|
|
|
results := make(models.FieldseekerServicerequestSlice, 0)
|
2026-01-06 22:23:59 +00:00
|
|
|
return results, nil
|
2026-01-05 02:06:34 +00:00
|
|
|
}
|
|
|
|
|
|
2026-01-06 22:23:59 +00:00
|
|
|
func TrapDataQuery() (models.FieldseekerTraplocationSlice, error) {
|
2026-01-05 02:06:34 +00:00
|
|
|
results := make(models.FieldseekerTraplocationSlice, 0)
|
2026-01-06 22:23:59 +00:00
|
|
|
return results, nil
|
2026-01-05 02:06:34 +00:00
|
|
|
}
|