mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-10 12:15:43 +01:00
12 lines
319 B
Go
12 lines
319 B
Go
// Copyright 2024 The Forgejo Authors c/o Codeberg e.V.. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package webhook
|
|
|
|
import (
|
|
webhook_module "code.gitea.io/gitea/modules/webhook"
|
|
)
|
|
|
|
type gogsHandler struct{ defaultHandler }
|
|
|
|
func (gogsHandler) Type() webhook_module.HookType { return webhook_module.GOGS }
|