Documentation ¶
Overview ¶
Package ulext provides an interface for the CLI to interface with the external world.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type External ¶
type External interface { OpenFilesystem(ctx context.Context, accessName string, options ...Option) (ulfs.Filesystem, error) OpenProject(ctx context.Context, accessName string, options ...Option) (*uplink.Project, error) AccessInfoFile() string OpenAccess(accessName string) (access *uplink.Access, err error) GetAccessInfo(required bool) (string, map[string]string, error) SaveAccessInfo(defaultName string, accesses map[string]string) error RequestAccess(ctx context.Context, satelliteAddress, apiKey, passphrase string) (*uplink.Access, error) ExportAccess(ctx clingy.Context, access *uplink.Access, filename string) error ConfigFile() string SaveConfig(values map[string]string) error PromptInput(ctx clingy.Context, prompt string) (input string, err error) PromptSecret(ctx clingy.Context, prompt string) (secret string, err error) }
External is the interface for all of the ways that the uplink command may interact with any external state.
type Option ¶
type Option struct {
// contains filtered or unexported fields
}
Option is a single option that controls the Options struct.
func BypassEncryption ¶
BypassEncryption will disable decrypting of path names if bypass is true.
func ConnectionPoolOptions ¶ added in v1.54.1
ConnectionPoolOptions will initialize the connection pool with options.
type Options ¶
Options contains all of the possible options for opening a filesystem or project.
func LoadOptions ¶
LoadOptions takes a slice of Option values and returns a filled out Options struct.
Click to show internal directories.
Click to hide internal directories.