Esempio n. 1
0
File: cm15.go Progetto: lopaka/rsc
// FromCommandLine builds a client from the command line.
func FromCommandLine(cmdLine *cmd.CommandLine) (*API, error) {
	raw, err := rsapi.FromCommandLine(cmdLine)
	if err != nil {
		return nil, err
	}
	return fromAPI(raw), nil
}
Esempio n. 2
0
File: ca.go Progetto: lopaka/rsc
// FromCommandLine builds a client from the command line.
func FromCommandLine(cmdLine *cmd.CommandLine) (*API, error) {
	api, err := rsapi.FromCommandLine(cmdLine)
	if err != nil {
		return nil, err
	}
	setupMetadata()
	api.Host = apiHostFromLogin(cmdLine.Host)
	api.Metadata = GenMetadata
	return &API{api}, nil
}
Esempio n. 3
0
File: ss.go Progetto: dylanmei/rsc
// Build client from command line
func FromCommandLine(cmdLine *cmd.CommandLine) (*Api, error) {
	api, err := rsapi.FromCommandLine(cmdLine)
	if err != nil {
		return nil, err
	}
	setupMetadata()
	api.Metadata = GenMetadata
	if api.Auth != nil {
		api.Auth.SetHost(api.Host)
	}
	return &Api{api}, nil
}