mirror of
https://github.com/harness/drone.git
synced 2025-05-05 23:42:57 +00:00
12 lines
249 B
Go
12 lines
249 B
Go
package hooks
|
|
|
|
import (
|
|
"github.com/harness/gitness/client"
|
|
"gopkg.in/alecthomas/kingpin.v2"
|
|
)
|
|
|
|
func Register(app *kingpin.Application, client client.Client) {
|
|
cmd := app.Command("hooks", "manage git server hooks")
|
|
registerUpdate(cmd, client)
|
|
}
|