mirror of https://github.com/rclone/rclone.git
Update namecrane.go
This commit is contained in:
parent
bcf2de136b
commit
7db384dc9a
|
@ -18,7 +18,7 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Namecrane Storage Backend
|
* NameCrane Mail File Storage
|
||||||
* Copyright (c) 2025 Namecrane LLC
|
* Copyright (c) 2025 Namecrane LLC
|
||||||
* PSA: No cranes harmed in the development of this module.
|
* PSA: No cranes harmed in the development of this module.
|
||||||
*/
|
*/
|
||||||
|
@ -56,21 +56,21 @@ type Options struct {
|
||||||
func init() {
|
func init() {
|
||||||
fs.Register(&fs.RegInfo{
|
fs.Register(&fs.RegInfo{
|
||||||
Name: "namecrane",
|
Name: "namecrane",
|
||||||
Description: "Namecrane File Storage API Backend",
|
Description: "NameCrane Mail File Storage",
|
||||||
NewFs: NewFs,
|
NewFs: NewFs,
|
||||||
Options: []fs.Option{{
|
Options: []fs.Option{{
|
||||||
Name: "api_url",
|
Name: "api_url",
|
||||||
Help: `Namecrane API URL, like https://us1.workspace.org`,
|
Help: `NameCrane API URL, like https://us1.workspace.org`,
|
||||||
Default: "https://us1.workspace.org",
|
Default: "https://us1.workspace.org",
|
||||||
Sensitive: true,
|
Sensitive: true,
|
||||||
}, {
|
}, {
|
||||||
Name: "username",
|
Name: "username",
|
||||||
Help: `Namecrane username`,
|
Help: `NameCrane username`,
|
||||||
Required: true,
|
Required: true,
|
||||||
Sensitive: true,
|
Sensitive: true,
|
||||||
}, {
|
}, {
|
||||||
Name: "password",
|
Name: "password",
|
||||||
Help: `Namecrane password`,
|
Help: `NameCrane password`,
|
||||||
Required: true,
|
Required: true,
|
||||||
IsPassword: true,
|
IsPassword: true,
|
||||||
}},
|
}},
|
||||||
|
|
Loading…
Reference in New Issue