From cf2f03ae3725453f6d16205a112263eb528607fb Mon Sep 17 00:00:00 2001 From: Runxi Yu Date: Tue, 1 Apr 2025 21:42:44 +0800 Subject: LMTP: Patch handling stub --- lmtp_handle_patch.go | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 lmtp_handle_patch.go (limited to 'lmtp_handle_patch.go') diff --git a/lmtp_handle_patch.go b/lmtp_handle_patch.go new file mode 100644 index 0000000..a3064d1 --- /dev/null +++ b/lmtp_handle_patch.go @@ -0,0 +1,15 @@ +// SPDX-License-Identifier: AGPL-3.0-only +// SPDX-FileCopyrightText: Copyright (c) 2025 Runxi Yu + +package main + +import ( + "log/slog" + + "github.com/emersion/go-message" +) + +func lmtpHandlePatch(groupPath []string, repoName string, email *message.Entity) (err error) { + slog.Info("Pretend like I'm handling a patch!") + return nil +} -- cgit v1.2.3