コード例 #1
0
ファイル: client.go プロジェクト: pivotal/gumshoe
func NewConfiguration() Configuration {
	return Configuration{
		Store:    store.NewFileStore(),
		Resolver: request.NewDefaultResolver(),
	}
}
コード例 #2
0
ファイル: api_authenticator.go プロジェクト: pivotal/gumshoe
func NewAPIAuthenticator() *APIAuthenticator {
	return &APIAuthenticator{
		Resolver: request.NewDefaultResolver(),
	}
}