mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-11 18:14:15 +01:00
13 lines
319 B
Go
13 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 }
|