mirror of
https://github.com/goharbor/harbor.git
synced 2024-12-20 23:57:42 +01:00
12 lines
157 B
Go
12 lines
157 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"github.com/vmware/harbor/api"
|
||
|
|
||
|
"github.com/astaxie/beego"
|
||
|
)
|
||
|
|
||
|
func initRouters() {
|
||
|
beego.Router("/api/jobs/?:id", &api.JobAPI{})
|
||
|
}
|