blob: 19fabf66d140a56fedd453a8962778bb737ee0d3 [file] [log] [blame]
Samuel A. Falvo II1d3fa662013-06-25 15:29:32 -07001package gophercloud
2
3import (
4 "fmt"
5)
6
7type AuthOptions struct {
8 Username, Password, TenantId string
9}
10
11func Authenticate(provider string, options AuthOptions) (*int, error) {
12 return nil, fmt.Errorf("Not implemented.")
13}