mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-11-08 02:34:46 +08:00
* add credential store interface * load credential.toml * lint * create credentialManager with explicit store type * add type name * InitializeCredentialManager * remove unused functions * fix missing import * fix import * fix nil configuration
25 lines
359 B
Go
25 lines
359 B
Go
package scaffold
|
|
|
|
import _ "embed"
|
|
|
|
//go:embed filer.toml
|
|
var Filer string
|
|
|
|
//go:embed notification.toml
|
|
var Notification string
|
|
|
|
//go:embed replication.toml
|
|
var Replication string
|
|
|
|
//go:embed security.toml
|
|
var Security string
|
|
|
|
//go:embed master.toml
|
|
var Master string
|
|
|
|
//go:embed shell.toml
|
|
var Shell string
|
|
|
|
//go:embed credential.toml
|
|
var Credential string
|