blob: 3927b890e7c3db3881df097af5e464381b9d3cad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// Copyright 2016 The Gogs Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package context
import (
"gogs.io/gogs/internal/db"
)
type APIOrganization struct {
Organization *db.User
Team *db.Team
}
|