Merge branch 'main' into drives_p1

This commit is contained in:
Michael Quigley
2023-10-25 16:54:56 -04:00
6 changed files with 70 additions and 28 deletions

View File

@ -21,6 +21,7 @@ const (
)
type ShareRequest struct {
Reserved bool
BackendMode BackendMode
ShareMode ShareMode
Target string
@ -32,8 +33,8 @@ type ShareRequest struct {
}
type Share struct {
Token string
FrontendEndpoints []string
Token string `json:"token"`
FrontendEndpoints []string `json:"frontend_endpoints"`
}
type AccessRequest struct {