Samuel A. Falvo II | 1d3fa66 | 2013-06-25 15:29:32 -0700 | [diff] [blame^] | 1 | package gophercloud |
2 | |||||
3 | import ( | ||||
4 | "fmt" | ||||
5 | ) | ||||
6 | |||||
7 | type AuthOptions struct { | ||||
8 | Username, Password, TenantId string | ||||
9 | } | ||||
10 | |||||
11 | func Authenticate(provider string, options AuthOptions) (*int, error) { | ||||
12 | return nil, fmt.Errorf("Not implemented.") | ||||
13 | } |