2016-03-25 18:04:02 -04:00
|
|
|
package context
|
|
|
|
|
|
|
|
|
|
import (
|
2024-02-18 19:39:41 -05:00
|
|
|
"gogs.io/gogs/internal/database"
|
2016-03-25 18:04:02 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type APIOrganization struct {
|
2024-02-18 19:39:41 -05:00
|
|
|
Organization *database.User
|
|
|
|
|
Team *database.Team
|
2016-03-25 18:04:02 -04:00
|
|
|
}
|