mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-15 13:52:33 +00:00
13 lines
206 B
Go
13 lines
206 B
Go
|
// Copyright 2024 The forgejo Authors. All rights reserved.
|
||
|
// SPDX-License-Identifier: MIT
|
||
|
|
||
|
package repo
|
||
|
|
||
|
import (
|
||
|
"code.gitea.io/gitea/models/db"
|
||
|
)
|
||
|
|
||
|
func init() {
|
||
|
db.RegisterModel(new(FederatedRepo))
|
||
|
}
|