mirror of
https://github.com/goharbor/harbor
synced 2025-04-26 21:31:42 +00:00
12 lines
144 B
Go
12 lines
144 B
Go
package models
|
|
|
|
import (
|
|
"github.com/astaxie/beego/orm"
|
|
)
|
|
|
|
func init() {
|
|
orm.RegisterModel(new(RepTarget),
|
|
new(RepPolicy),
|
|
new(RepJob))
|
|
}
|