mirror of https://github.com/go-gitea/gitea
Git with a cup of tea, painless self-hosted git service
Mirror for internal git.with.parts use
https://git.with.parts
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
313 B
13 lines
313 B
9 years ago
|
// Copyright 2016 The Gogs Authors. All rights reserved.
|
||
2 years ago
|
// SPDX-License-Identifier: MIT
|
||
9 years ago
|
|
||
|
package context
|
||
|
|
||
3 years ago
|
import "code.gitea.io/gitea/models/organization"
|
||
9 years ago
|
|
||
8 years ago
|
// APIOrganization contains organization and team
|
||
9 years ago
|
type APIOrganization struct {
|
||
3 years ago
|
Organization *organization.Organization
|
||
|
Team *organization.Team
|
||
9 years ago
|
}
|