mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-02 16:49:48 +01:00
15 lines
226 B
Go
15 lines
226 B
Go
package main
|
|
|
|
import (
|
|
"github.com/astaxie/beego"
|
|
"github.com/vmware/harbor/dao"
|
|
_ "github.com/vmware/harbor/job/imgout"
|
|
// "github.com/vmware/harbor/utils/log"
|
|
)
|
|
|
|
func main() {
|
|
dao.InitDB()
|
|
initRouters()
|
|
beego.Run()
|
|
}
|