Add page for showing pool uploads

This commit is contained in:
Eli Ribble 2026-02-07 18:26:47 +00:00
parent 874d49c6a5
commit 59076e9eb0
No known key found for this signature in database
7 changed files with 232 additions and 193 deletions

15
sync/url.go Normal file
View file

@ -0,0 +1,15 @@
package sync
import (
"github.com/Gleipnir-Technology/nidus-sync/config"
)
type ContentURL struct {
PoolCSVUpload string
}
func newContentURL() ContentURL {
return ContentURL{
PoolCSVUpload: config.MakeURLNidus("/pool/upload"),
}
}