nidus-sync/platform/general.go
Eli Ribble 7237f5f666
Some checks failed
/ golint (push) Failing after 3m50s
Move internal references to new source hosting
2026-05-19 15:33:57 +00:00

20 lines
514 B
Go

package platform
import (
"source.gleipnir.technology/Gleipnir/nidus-sync/db/models"
)
func MosquitoSourceQuery() ([]MosquitoSource, error) {
results := make([]MosquitoSource, 0)
return results, nil
}
func ServiceRequestQuery() (models.FieldseekerServicerequestSlice, error) {
results := make(models.FieldseekerServicerequestSlice, 0)
return results, nil
}
func TrapDataQuery() (models.FieldseekerTraplocationSlice, error) {
results := make(models.FieldseekerTraplocationSlice, 0)
return results, nil
}