aboutsummaryrefslogtreecommitdiff
path: root/lmtp_handle_patch.go
diff options
context:
space:
mode:
Diffstat (limited to 'lmtp_handle_patch.go')
-rw-r--r--lmtp_handle_patch.go15
1 files changed, 15 insertions, 0 deletions
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 <https://runxiyu.org>
+
+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
+}