flag.StringVar(&config.MetricsAddr,"metrics-addr",":8000","The address the metric endpoint binds to.")
flag.Var(&config.Rules,"rule","The rule denotes from where webhook deliveries forwarded and to where they are forwarded. Must be formatted REPO=TARGET where REPO can be just the organization name for a repostory hook or \"owner/repo\" for a repository hook.")
flag.StringVar(&config.GitHubConfig.Token,"github-token",config.GitHubConfig.Token,"The personal access token of GitHub.")
flag.Int64Var(&config.GitHubConfig.AppID,"github-app-id",config.GitHubConfig.AppID,"The application ID of GitHub App.")
flag.Int64Var(&config.GitHubConfig.AppInstallationID,"github-app-installation-id",config.GitHubConfig.AppInstallationID,"The installation ID of GitHub App.")
flag.StringVar(&config.GitHubConfig.AppPrivateKey,"github-app-private-key",config.GitHubConfig.AppPrivateKey,"The path of a private key file to authenticate as a GitHub App")