// Copyright 2017 Drone.IO Inc. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package azure import ( "context" "git.awesome-for.me/liuzhiguo/go-scm/scm" ) type userService struct { client *wrapper } func (s *userService) Find(ctx context.Context) (*scm.User, *scm.Response, error) { return nil, nil, scm.ErrNotSupported } func (s *userService) FindLogin(ctx context.Context, login string) (*scm.User, *scm.Response, error) { return nil, nil, scm.ErrNotSupported } func (s *userService) FindEmail(ctx context.Context) (string, *scm.Response, error) { return "", nil, scm.ErrNotSupported } func (s *userService) ListEmail(context.Context, scm.ListOptions) ([]*scm.Email, *scm.Response, error) { return nil, nil, scm.ErrNotSupported }