api_org.go 373 B

1234567891011121314151617
  1. // Copyright 2015 The Gogs Authors. All rights reserved.
  2. // Copyright 2018 Gitote. All rights reserved.
  3. //
  4. // This source code is licensed under the MIT license found in the
  5. // LICENSE file in the root directory of this source tree.
  6. package context
  7. import (
  8. "gitote/gitote/models"
  9. )
  10. type APIOrganization struct {
  11. Organization *models.User
  12. Team *models.Team
  13. }