mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-27 12:46:03 +01:00
12 lines
172 B
Go
12 lines
172 B
Go
package main
|
|
|
|
import (
|
|
"github.com/vmware/harbor/api"
|
|
|
|
"github.com/astaxie/beego"
|
|
)
|
|
|
|
func initRouters() {
|
|
beego.Router("/api/jobs/replication", &api.ReplicationJob{})
|
|
}
|