1
0
mirror of https://github.com/goharbor/harbor.git synced 2025-03-24 12:30:04 +01:00
harbor/models/base.go
2016-05-10 19:38:50 +08:00

12 lines
144 B
Go

package models
import (
"github.com/astaxie/beego/orm"
)
func init() {
orm.RegisterModel(new(RepTarget),
new(RepPolicy),
new(RepJob))
}