mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-15 22:38:31 +01:00
12 lines
211 B
Go
12 lines
211 B
Go
// Copyright 2024 The Forgejo Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package forgefed
|
|
|
|
import (
|
|
"code.gitea.io/gitea/models/db"
|
|
)
|
|
|
|
func init() {
|
|
db.RegisterModel(new(FederationInfo))
|
|
}
|