nidus-sync/sync/service-request.go

15 lines
354 B
Go
Raw Normal View History

2026-02-17 19:06:51 +00:00
package sync
import (
"context"
"github.com/Gleipnir-Technology/nidus-sync/db/models"
)
type contentServiceRequestPlaceholder struct{}
func getServiceRequestList(ctx context.Context, user *models.User) (string, interface{}, *errorWithStatus) {
content := contentServiceRequestPlaceholder{}
return "sync/service-request-list.html", content, nil
}