mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-03 01:00:08 +01: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))
|
|
}
|