mirror of https://github.com/stashapp/stash.git
13 lines
250 B
Go
13 lines
250 B
Go
![]() |
package models
|
||
|
|
||
|
type PackageSpecInput struct {
|
||
|
ID string `json:"id"`
|
||
|
SourceURL string `json:"sourceURL"`
|
||
|
}
|
||
|
|
||
|
type PackageSource struct {
|
||
|
Name *string `json:"name"`
|
||
|
LocalPath string `json:"localPath"`
|
||
|
URL string `json:"url"`
|
||
|
}
|