Update namecrane.go

This commit is contained in:
namecrane 2025-01-25 22:52:50 -08:00 committed by GitHub
parent bcf2de136b
commit 7db384dc9a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 5 deletions

View File

@ -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,
}}, }},