nidus-sync/sync/parcel.go

17 lines
465 B
Go
Raw Permalink Normal View History

2026-02-28 23:17:30 +00:00
package sync
import (
"context"
"net/http"
"github.com/Gleipnir-Technology/nidus-sync/db/models"
"github.com/Gleipnir-Technology/nidus-sync/html"
nhttp "github.com/Gleipnir-Technology/nidus-sync/http"
2026-02-28 23:17:30 +00:00
)
type contentParcel struct{}
func getParcel(ctx context.Context, r *http.Request, org *models.Organization, user *models.User) (*html.Response[contentParcel], *nhttp.ErrorWithStatus) {
return html.NewResponse("sync/parcel.html", contentParcel{}), nil
2026-02-28 23:17:30 +00:00
}