Add page for showing pool uploads
This commit is contained in:
parent
874d49c6a5
commit
59076e9eb0
7 changed files with 232 additions and 193 deletions
15
sync/url.go
Normal file
15
sync/url.go
Normal 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"),
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue